/*
Theme Name: Georghof Relaunch
Theme URI: https://weingut-georghof.de/
Author: Somethingblue
Description: Prototype theme for the Weingut Georghof relaunch.
Version: 0.1.0
Requires at least: 6.8
Text Domain: georghof
*/

:root {
  --g-red: #9a143d;
  --g-red-dark: #6f0d2d;
  --g-ink: #24201f;
  --g-muted: #6d6060;
  --g-line: #e7ded9;
  --g-soft: #f7f3f0;
  --g-white: #fff;
  --g-charcoal: #252525;
  --g-serif: "Cormorant Garamond", Georgia, serif;
  --g-sans: "Inter", Arial, sans-serif;
  --g-container: 1280px;
  --g-inner: 1180px;
  --g-desktop-margin: 80px;
  --g-section-gap: 80px;
  --g-inner-gap: 60px;
  --g-grid-gap: 40px;
  --g-card-gap: 30px;
  --g-element-gap: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--g-ink);
  background: var(--g-white);
  font-family: var(--g-sans);
  font-size: 16px;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 80px;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(36, 32, 31, .08);
  backdrop-filter: blur(14px);
}

.header-inner,
.section-inner {
  margin: 0 auto;
}

.header-inner {
  width: min(var(--g-container), calc(100% - (var(--g-desktop-margin) * 2)));
}

.section-inner {
  width: min(var(--g-inner), calc(100% - (var(--g-desktop-margin) * 2)));
}

.header-inner {
  display: grid;
  grid-template-columns: 220px 1fr 130px;
  align-items: center;
  height: 100%;
  gap: 34px;
}

.brand img {
  width: 198px;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  color: #4f373b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.main-nav > a,
.nav-trigger {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
}

.main-nav .nav-month-link,
.mobile-nav .nav-month-link {
  color: #9a143d;
}

.nav-trigger {
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
}

.nav-dropdown {
  position: relative;
}

.nav-trigger::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 70;
  min-width: 190px;
  padding: 12px 0;
  background: var(--g-white);
  border: 1px solid var(--g-line);
  box-shadow: 0 18px 38px rgba(36, 32, 31, .12);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.submenu::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}

.submenu a {
  display: block;
  padding: 9px 18px;
  color: #4f373b;
  font-size: 12px;
  letter-spacing: .06em;
  white-space: nowrap;
}

.submenu a:hover,
.submenu a:focus {
  color: var(--g-red);
  background: var(--g-soft);
}

.nav-dropdown:hover .submenu,
.nav-dropdown:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.header-icons {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  color: #391c24;
}

.icon-link {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
}

.cart-dot {
  position: absolute;
  top: -2px;
  right: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--g-red);
}

.mobile-menu-button,
.mobile-nav {
  display: none;
}

.hero {
  height: 500px;
  min-height: 500px;
  display: grid;
  align-items: center;
  color: var(--g-white);
  background-color: #161412;
  background-image:
    linear-gradient(90deg, rgba(18, 17, 16, .68) 0%, rgba(18, 17, 16, .34) 44%, rgba(18, 17, 16, .05) 100%),
    url("assets/images/georgshof_startseite.jpg");
  background-position: center, center bottom;
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
}

.hero-content {
  width: min(var(--g-inner), calc(100% - (var(--g-desktop-margin) * 2)));
  margin: 0 auto;
  padding: 120px 0;
}

.hero h1 {
  max-width: 560px;
  margin: 0;
  font-family: var(--g-serif);
  font-size: 72px;
  font-weight: 500;
  line-height: .96;
  letter-spacing: 0;
}

.hero-rule {
  width: 62px;
  height: 2px;
  margin: 30px 0 24px;
  background: var(--g-white);
}

.hero p {
  max-width: 410px;
  margin: 0 0 34px;
  font-size: 18px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 28px;
  border: 1px solid currentColor;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.btn-primary {
  border-color: var(--g-red);
  background: var(--g-red);
  color: var(--g-white);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, .82);
  color: var(--g-white);
}

.btn-outline {
  border-color: var(--g-red);
  color: var(--g-red);
  background: transparent;
}

.label {
  margin: 0 0 12px;
  color: var(--g-red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  font-family: var(--g-serif);
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 500;
  line-height: 1.08;
}

.products {
  padding: 20px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: var(--g-grid-gap);
  margin-bottom: 32px;
}

.text-link {
  color: var(--g-red);
  border-bottom: 1px solid var(--g-red);
  padding-bottom: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--g-card-gap);
}

.product-card {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 260px;
  padding: 22px 20px 20px;
  background: var(--g-soft);
}

.product-card img {
  width: 92%;
  height: 220px;
  object-fit: contain;
  align-self: end;
}

.product-info {
  align-self: center;
}

.product-year {
  color: var(--g-muted);
  font-family: var(--g-serif);
  font-size: 16px;
}

.product-info h3 {
  margin: 0 0 12px;
  font-family: var(--g-serif);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.03;
}

.product-info h3 a {
  color: inherit;
  text-decoration: none;
}

.product-style {
  margin: 0 0 24px;
  color: var(--g-muted);
  font-size: 14px;
}

.price {
  color: var(--g-red);
  font-weight: 800;
}

.unit {
  margin: 0 0 13px;
  color: var(--g-muted);
  font-size: 13px;
}

.details {
  color: var(--g-red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(154, 20, 61, .55);
}

.wine-builder {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr);
  gap: var(--g-inner-gap);
  align-items: start;
  margin-top: 80px;
  padding: 60px 0 0;
  border-top: 1px solid var(--g-line);
}

.wine-builder-copy h3,
.wine-category h3,
.vintage-card h3,
.tasting-list h3 {
  margin: 0;
  font-family: var(--g-serif);
  font-weight: 500;
  line-height: 1.08;
}

.wine-builder-copy h3 {
  max-width: 420px;
  font-size: 34px;
}

.wine-builder-copy p {
  max-width: 480px;
  margin: 14px 0 0;
  color: #5f5452;
}

.wine-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--g-card-gap);
}

.wine-category {
  min-height: 150px;
  padding: 24px;
  background: var(--g-white);
  border: 1px solid var(--g-line);
}

.wine-category span {
  display: block;
  margin-bottom: 14px;
  color: var(--g-red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.wine-category h3 {
  font-size: 24px;
}

.wine-category p {
  margin: 10px 0 0;
  color: #5f5452;
  font-size: 14px;
}

.story {
  background: var(--g-soft);
}

.story-wrapper {
  display: grid;
  grid-template-columns: minmax(360px, 44%) minmax(0, 1fr);
  width: min(var(--g-inner), calc(100% - (var(--g-desktop-margin) * 2)));
  max-width: 1200px;
  margin: 0 auto;
  height: 300px;
  max-height: 300px;
  overflow: hidden;
}

.story-copy {
  align-self: center;
  padding: 24px 32px 24px 8px;
}

.story-copy .label {
  margin-bottom: 8px;
}

.story-copy .section-title {
  font-size: 31px;
  line-height: 1.02;
}

.story-copy p:not(.label) {
  max-width: 440px;
  margin: 9px 0 14px;
  color: #514846;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.8;
}

.story-copy .btn {
  min-height: 38px;
  padding: 0 22px;
  font-size: 11px;
}

.story-image {
  height: 300px;
  min-height: 250px;
  max-height: 300px;
  align-self: stretch;
  background: url("assets/images/family.jpg") right / cover no-repeat;
}

.home-video-section {
  padding: 46px 0;
  background: var(--g-white);
}

.home-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 680px;
  object-fit: cover;
  background: #161412;
}

.manufaktur-detail {
  display: none;
  padding: 56px 0 58px;
  background: var(--g-white);
}

.manufaktur-intro {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(280px, .78fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 28px;
}

.manufaktur-intro p {
  margin: 0;
  color: #5f5452;
}

.manufaktur-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--g-line);
  border-bottom: 1px solid var(--g-line);
}

.manufaktur-card {
  min-height: 240px;
  padding: 30px 28px 28px;
  border-right: 1px solid var(--g-line);
}

.manufaktur-card:first-child {
  border-left: 1px solid var(--g-line);
}

.manufaktur-card span {
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  border: 1px solid var(--g-red);
  border-radius: 50%;
}

.manufaktur-card h3,
.journal-feature h3,
.contact-card p {
  margin: 0;
  font-family: var(--g-serif);
  font-weight: 500;
  line-height: 1.08;
}

.manufaktur-card h3 {
  font-size: 28px;
}

.manufaktur-card p {
  margin: 14px 0 0;
  color: #5f5452;
}

.vintages {
  padding: 80px 0;
  background: var(--g-white);
}

.vintage-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .78fr);
  gap: var(--g-inner-gap);
  align-items: end;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--g-line);
}

.vintage-intro p {
  margin: 0;
  color: #5f5452;
}

.vintage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--g-card-gap);
}

.vintage-card {
  min-height: 300px;
  padding: 40px 34px;
  background: var(--g-soft);
}

.vintage-card span {
  display: block;
  margin-bottom: 28px;
  color: var(--g-red);
  font-family: var(--g-serif);
  font-size: 58px;
  font-weight: 500;
  line-height: .85;
}

.vintage-card h3 {
  font-size: 27px;
}

.vintage-card p {
  margin: 12px 0 0;
  color: #5f5452;
}

.values-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  width: min(var(--g-inner), calc(100% - (var(--g-desktop-margin) * 2)));
  max-width: 1200px;
  min-height: 330px;
  margin: 20px auto 0;
  padding: 52px 40px;
  background-color: #ffffff;
  border-top: 1px solid #e0d8d0;
  border-bottom: 1px solid #e0d8d0;
  box-shadow: 0 1px 0 #e0d8d0;
}

.value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 0 32px;
  text-align: center;
}

.value-item:not(:last-child) {
  border-right: 1px solid #e0d8d0;
}

.value-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 8px;
}

.value-icon img,
.value-icon svg {
  width: 100%;
  height: 100%;
}

.value-icon img {
  object-fit: contain;
}

.value-title {
  margin: 0;
  color: #1a1a1a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.value-text {
  max-width: 220px;
  margin: 0;
  color: #555;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.65;
}

.value-link {
  margin-top: auto;
  color: var(--g-red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}

.value-link:hover {
  text-decoration: underline;
}

.tastings {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  background: var(--g-soft);
  border-bottom: 1px solid var(--g-line);
}

.tasting-media {
  position: relative;
  min-height: 540px;
  overflow: hidden;
}

.tasting-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tasting-copy {
  align-self: center;
  max-width: 650px;
  padding: 58px max(24px, calc((100vw - 1180px) / 2)) 58px 58px;
}

.lead {
  max-width: 480px;
  margin: 18px 0 26px;
  color: #5f5452;
  font-size: 18px;
}

.tasting-list {
  display: grid;
  gap: 16px;
  margin: 0 0 26px;
}

.tasting-list article {
  padding-top: 16px;
  border-top: 1px solid var(--g-line);
}

.tasting-list h3 {
  font-size: 25px;
}

.tasting-list p {
  margin: 8px 0 0;
  color: #5f5452;
}

.tasting-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.tasting-facts span {
  padding: 8px 12px;
  color: var(--g-red);
  background: var(--g-white);
  border: 1px solid var(--g-line);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.journal-section {
  padding: 52px 0 58px;
  background: linear-gradient(90deg, var(--g-soft) 0%, var(--g-soft) 52%, var(--g-white) 52%, var(--g-white) 100%);
}

.journal-layout {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
  gap: 36px;
  align-items: start;
}

.journal-feature {
  display: grid;
  background: var(--g-white);
  border: 1px solid var(--g-line);
}

.journal-feature img {
  width: 100%;
  aspect-ratio: 1.56;
  object-fit: cover;
}

.journal-feature div {
  padding: 24px 26px 28px;
}

.journal-feature h3 {
  margin: 6px 0 12px;
  font-size: 34px;
}

.journal-feature p {
  margin: 0 0 18px;
  color: #5f5452;
}

.contact-section {
  min-height: 350px;
  display: grid;
  align-items: center;
  margin: 15px 0;
  padding: 30px 0;
  color: var(--g-white);
  background:
    linear-gradient(90deg, rgba(35, 31, 30, .92) 0%, rgba(35, 31, 30, .82) 48%, rgba(35, 31, 30, .72) 100%),
    url("assets/images/hero-mosel-crop.jpg") center / cover no-repeat;
}

.contact-section .label,
.contact-section .section-title {
  color: var(--g-white);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
  gap: var(--g-inner-gap);
  align-items: center;
}

.contact-copy p:not(.label) {
  max-width: 520px;
  margin: 18px 0 28px;
  color: rgba(255, 255, 255, .82);
  line-height: 1.8;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 450px);
  gap: var(--g-card-gap);
  justify-content: end;
}

.contact-card {
  min-height: 0;
  padding: 22px 20px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .22);
  backdrop-filter: blur(8px);
}

.contact-card-wide {
  width: min(450px, 100%);
}

.contact-detail + .contact-detail {
  margin-top: 18px;
  padding-top: 0;
}

.contact-card span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.contact-card p {
  margin: 0;
  color: var(--g-white);
  font-size: 22px;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.contact-section .btn-outline {
  border-color: rgba(255, 255, 255, .76);
  color: var(--g-white);
}

.newsletter-signup {
  margin: 0;
  padding: 86px 0 94px;
  background:
    radial-gradient(circle at 18% 26%, rgba(154, 20, 61, .06), transparent 28%),
    linear-gradient(135deg, #fff 0%, #fdf8f4 52%, #fff 100%);
  border-top: 1px solid rgba(179, 134, 61, .16);
}

.newsletter-signup-inner {
  display: grid;
  grid-template-columns: minmax(320px, .95fr) minmax(360px, 1fr);
  gap: 58px;
  align-items: center;
}

.newsletter-signup-copy {
  padding-right: 56px;
  border-right: 1px solid rgba(36, 32, 31, .16);
}

.newsletter-signup h2 {
  margin: 0;
  color: var(--g-red);
  font-family: var(--g-serif);
  font-size: clamp(24px, 7vw, 58px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.newsletter-ornament {
  position: relative;
  display: block;
  width: 110px;
  height: 16px;
  margin: 26px auto 24px;
}

.newsletter-ornament::before,
.newsletter-ornament::after {
  content: "";
  position: absolute;
}

.newsletter-ornament::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(179, 134, 61, .78) 0 42%, transparent 42% 58%, rgba(179, 134, 61, .78) 58% 100%);
  transform: translateY(-50%);
}

.newsletter-ornament::after {
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: #b3863d;
  transform: translate(-50%, -50%) rotate(45deg);
}

.newsletter-signup-copy p {
  max-width: 520px;
  margin: 0;
  color: #5a5351;
  font-size: 14px;
  line-height: 1.62;
}

.newsletter-signup-form {
  display: grid;
  gap: 20px;
  max-width: 520px;
}

.newsletter-input-wrap {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  height: 70px;
  padding: 0 24px;
  color: #8e8a88;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(36, 32, 31, .24);
  border-radius: 4px;
}

.newsletter-input-wrap input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--g-ink);
  background: transparent;
  font: 500 22px/1.2 var(--g-sans);
}

.newsletter-input-wrap input::placeholder {
  color: rgba(82, 78, 76, .44);
}

.newsletter-submit {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 50px;
  padding: 0 22px 0 28px;
  color: var(--g-white);
  background: var(--g-red);
  border: 0;
  border-radius: 0;
  font-family: var(--g-sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}

.newsletter-submit span {
  color: var(--g-white);
  font-family: var(--g-sans);
  font-size: 22px;
  line-height: 1;
}

.newsletter-submit:hover,
.newsletter-submit:focus {
  background: var(--g-red-dark);
}

.newsletter-privacy {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  align-items: start;
  margin: 10px 0 0;
  color: #5f5855;
  font-size: 16px;
  line-height: 1.42;
}

.newsletter-privacy span {
  color: #8f8a87;
}

.newsletter-status {
  margin: 0;
  color: var(--g-red);
  font-size: 14px;
  font-weight: 700;
}

.newsletter-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.subpage {
  padding: 0 0 62px;
  background: var(--g-white);
}

.subpage-hero {
  height: 500px;
  min-height: 500px;
  display: grid;
  align-items: center;
  color: var(--g-white);
  background-color: #161412;
  background-image:
    linear-gradient(90deg, rgba(18, 17, 16, .68) 0%, rgba(18, 17, 16, .34) 44%, rgba(18, 17, 16, .05) 100%),
    var(--subpage-hero-image);
  background-position: center, center bottom;
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
}

.subpage-hero-content {
  width: min(var(--g-inner), calc(100% - (var(--g-desktop-margin) * 2)));
  margin: 0 auto;
  padding: 20px 0;
}

.subpage-hero .label {
  color: var(--g-white);
}

.subpage-hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: var(--g-serif);
  font-size: 64px;
  font-weight: 500;
  line-height: .96;
  letter-spacing: 0;
  text-wrap: balance;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.subpage-hero p:not(.label) {
  max-width: 520px;
  margin: 0 0 34px;
  color: var(--g-white);
  font-size: 16px;
}

.subpage-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: 38px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: 48px;
}

.subpage-main {
  min-width: 0;
}

.subpage-main h1 {
  max-width: 780px;
  margin: 0 0 24px;
  font-family: var(--g-serif);
  font-size: clamp(48px, 5.8vw, 72px);
  font-weight: 500;
  line-height: 1.02;
}

.subpage-main p {
  max-width: 760px;
  margin: 0 0 16px;
  color: #3f3735;
  font-family: Arial, sans-serif;
  font-size: 14px;
  overflow-wrap: anywhere;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(260px, .82fr) minmax(320px, 1.18fr);
  gap: 30px;
  align-items: stretch;
  margin-bottom: 42px;
}

.contact-page-details,
.contact-form-section {
  padding: 30px;
  background: linear-gradient(135deg, #fff 0%, #fdf8f4 52%, #fdf8f4 100%);
}

.contact-page-details .label,
.contact-form-head .label {
  margin: 0 0 12px;
  color: var(--g-red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-page-details h2,
.contact-form-head h2 {
  margin: 0 0 16px;
  color: var(--g-red);
  font-family: var(--g-serif);
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.08;
}

.contact-page-details a {
  color: #2b2422;
  text-decoration: none;
}

.contact-page-details a:hover {
  color: var(--g-red);
}

.contact-page-map {
  min-height: 430px;
  background: #f4ede8;
}

.contact-page-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
}

.contact-form-section {
  margin-bottom: 36px;
}

.contact-form-head {
  margin-bottom: 24px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
}

.form-row,
.form-row label,
.form-consent {
  min-width: 0;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row-wide,
.form-consent,
.contact-form .btn {
  grid-column: 1 / -1;
}

.form-row label,
.form-consent {
  color: #2b2422;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(154, 20, 61, .28);
  border-radius: 0;
  padding: 13px 14px;
  color: #211b1a;
  background: rgba(255, 255, 255, .86);
  font: inherit;
}

.form-row textarea {
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid rgba(154, 20, 61, .26);
  outline-offset: 2px;
}

.form-consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  text-transform: none;
  line-height: 1.5;
}

.form-consent a {
  color: var(--g-red);
}

.contact-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-notice {
  max-width: none;
  margin: 0 0 18px;
  padding: 13px 16px;
  border: 1px solid rgba(154, 20, 61, .28);
  background: rgba(255, 255, 255, .82);
  font-weight: 700;
}

.form-notice.is-success {
  color: #236b39;
  border-color: rgba(35, 107, 57, .32);
}

.form-notice.is-error {
  color: var(--g-red);
}

.subpage-feature {
  width: min(1180px, calc(100% - 48px));
  margin: 48px auto 0;
}

.subpage-content-image {
  display: block;
  width: 100%;
  margin: 0;
  object-fit: cover;
}

.wine-showcase {
  background: linear-gradient(180deg, #fff 0%, #faf7f3 100%);
}

.subpage-main .wine-showcase {
  background: transparent;
}

.wine-showcase-intro {
  width: min(1180px, calc(100% - 48px));
  max-width: 780px;
  margin: 0 auto;
  padding: 48px 0 0;
  color: #555;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.65;
}

.subpage-main .wine-showcase-intro {
  width: 100%;
  margin: 0 15px 40px;
  padding-top: 0;
}

.wine-showcase-item {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(300px, .72fr);
  gap: 30px;
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  min-height: 0;
  margin: 0 auto;
  padding: 15px;
  border-bottom: 1px solid rgba(154, 20, 61, .12);
}

.subpage-main .wine-showcase-item {
  grid-template-columns: minmax(0, 1fr) 316px;
  gap: 45px;
  column-gap: 10px;
  width: 100%;
  min-height: 0;
  margin-top: 5px;
  margin-bottom: 30px;
  padding: 20px;
  background: linear-gradient(135deg, #fff 0%, #fdf8f4 52%, #fdf8f4 100%);
  border-bottom: 0;
}

.subpage-main .wine-showcase-item.is-reverse {
  background: linear-gradient(225deg, #fff 0%, #fdf8f4 52%, #fdf8f4 100%);
}

.wine-showcase-item.is-reverse {
  grid-template-columns: minmax(300px, .72fr) minmax(0, .98fr);
}

.subpage-main .wine-showcase-item.is-reverse {
  grid-template-columns: 316px minmax(0, 1fr);
}

.wine-showcase-item.is-reverse .wine-showcase-copy {
  grid-column: 2;
}

.wine-showcase-item.is-reverse .wine-showcase-media {
  grid-column: 1;
  grid-row: 1;
}

.wine-showcase-copy {
  min-width: 0;
}

.wine-showcase-eyebrow,
.wine-showcase-copy > .label {
  margin: 0 0 18px;
  color: #9a143d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.wine-showcase-eyebrow::after,
.wine-showcase-copy > .label::after {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  margin-top: 16px;
  background: #b3863d;
}

.wine-showcase-copy h2 {
  max-width: 620px;
  margin: 0;
  color: #171211;
  font-family: var(--g-serif);
  font-size: clamp(38px, 4.6vw, 58px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0;
}

.wine-showcase-copy .section-title {
  font-family: var(--g-serif);
  font-size: 12px;
}

.subpage-main .wine-showcase-copy h2 {
  font-size: clamp(34px, 4vw, 31px);
}

.wine-showcase-copy > p:not(.label):not(.wine-showcase-eyebrow) {
  max-width: 560px;
  margin: 30px 0 0;
  color: #222;
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 1.55;
  letter-spacing: .06em;
}

.wine-showcase-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 720px;
  margin-top: 54px;
}

.subpage-main .wine-showcase-facts {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-column: 1 / -1;
  width: 100%;
  max-width: none;
  margin-top: 0;
  justify-self: stretch;
  align-items: center;
  justify-items: center;
}

.wine-showcase-fact {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 72px;
  padding: 0 16px;
  border-left: 1px solid rgba(179, 134, 61, .45);
}

.subpage-main .wine-showcase-fact,
.subpage-main .wine-showcase-fact:first-child {
  padding: 0 8px;
  border-top: 0;
  border-left: 1px solid rgba(179, 134, 61, .32);
}

.subpage-main .wine-showcase-fact:first-child {
  padding-left: 0;
  border-left: 0;
}

.wine-showcase-fact:first-child {
  padding-left: 0;
  border-left: 0;
}

.wine-showcase-fact img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(14%) sepia(46%) saturate(3378%) hue-rotate(320deg) brightness(94%) contrast(95%);
}

.wine-showcase-fact strong,
.wine-showcase-fact span {
  display: block;
  font-family: Arial, sans-serif;
  line-height: 1.45;
}

.wine-showcase-fact strong {
  margin-bottom: 4px;
  color: #161312;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.wine-showcase-fact span {
  color: #302927;
  font-size: 12px;
}

.wine-showcase-media {
  display: block;
  width: 300px;
  max-width: 100%;
  height: 70%;
  min-height: 300px;
  align-self: center;
  padding: 0;
  background-image: var(--wine-showcase-image);
  background-position: right bottom;
  background-size: auto 100%;
  background-repeat: no-repeat;
}

.subpage-main .wine-showcase-media {
  max-width: none;
  min-height: 300px;
  justify-self: end;
}

.wine-showcase-item.is-reverse .wine-showcase-media {
  background-position: left bottom;
  justify-self: start;
}

.subpage-hero-image {
  width: 100%;
  max-height: 410px;
  margin: 0 0 24px;
  object-fit: cover;
}

.subpage-hero-image.is-bottle {
  height: 520px;
  max-height: none;
  padding: 28px;
  background: var(--g-soft);
  object-fit: contain;
  object-position: center;
}

.content-list {
  margin-top: 36px;
  border-top: 1px solid rgba(154, 20, 61, .36);
}

.content-list-item {
  display: grid;
  grid-template-columns: minmax(220px, .42fr) minmax(0, 1fr);
  gap: 34px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(154, 20, 61, .28);
}

.content-list-item h2,
.subpage-cta h2,
.tavern h2 {
  margin: 0;
  color: var(--g-red);
  font-family: var(--g-serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.12;
}

.content-list-item p {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.wine-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.wine-overview-card {
  display: grid;
  grid-template-rows: 220px 1fr;
  min-width: 0;
  color: inherit;
  background: #fff;
  border: 1px solid #d9d9d9;
  text-decoration: none;
  transition: border-color .18s ease, transform .18s ease;
}

.wine-overview-card:hover,
.wine-overview-card:focus {
  border-color: rgba(154, 20, 61, .55);
  transform: translateY(-2px);
}

.wine-overview-image {
  display: block;
  min-height: 0;
  background-image:
    linear-gradient(0deg, rgba(20, 18, 17, .16), rgba(20, 18, 17, .16)),
    var(--wine-overview-image);
  background-position: center;
  background-size: cover;
}

.wine-overview-copy {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 24px;
}

.wine-overview-copy .label {
  margin: 0;
  color: var(--g-red);
}

.wine-overview-copy strong {
  color: #231d1b;
  font-family: var(--g-serif);
  font-size: clamp(25px, 2.4vw, 34px);
  font-weight: 500;
  line-height: 1.08;
}

.wine-overview-copy span:not(.label) {
  color: #555;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.65;
}

.wine-overview-copy em {
  color: var(--g-red);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.subpage-aktuelles .subpage-main > p {
  max-width: 760px;
  color: #555;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.65;
}

.wein-geo-feature {
  display: grid;
  grid-template-columns: minmax(240px, .86fr) minmax(0, 1fr);
  margin-top: 36px;
  background: #fff;
  border: 1px solid #d9d9d9;
}

.wein-geo-feature-cover,
.wein-geo-card-cover {
  display: grid;
  place-items: center;
  min-width: 0;
  background: #fff;
}

.wein-geo-feature-cover {
  min-height: 360px;
  padding: 24px;
  border-right: 1px solid #d9d9d9;
}

.wein-geo-feature-cover img {
  display: block;
  width: auto;
  max-width: min(100%, 280px);
  max-height: 420px;
  object-fit: contain;
}

.wein-geo-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(28px, 4vw, 48px);
}

.wein-geo-feature-copy .label,
.wein-geo-card-copy .label {
  color: var(--g-red);
}

.wein-geo-feature-copy h2,
.wein-geo-card-copy h2 {
  margin: 0;
  color: #161312;
  font-family: var(--g-serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

.wein-geo-feature-copy h2 {
  max-width: 560px;
  font-size: clamp(34px, 4.4vw, 54px);
}

.wein-geo-feature-copy p:not(.label),
.wein-geo-card-copy p:not(.label) {
  color: #555;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.65;
}

.wein-geo-feature-copy p:not(.label) {
  max-width: 560px;
  margin: 20px 0 0;
}

.wein-geo-actions,
.wein-geo-card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.wein-geo-actions {
  margin-top: 28px;
}

.wein-geo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 26px;
}

.wein-geo-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  background: #fff;
  border: 1px solid #d9d9d9;
}

.wein-geo-card-cover {
  min-height: 190px;
  padding: 14px;
  border-bottom: 1px solid #d9d9d9;
}

.wein-geo-card-cover img {
  display: block;
  width: auto;
  max-width: min(100%, 158px);
  max-height: 220px;
  object-fit: contain;
}

.wein-geo-card-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 20px 18px 22px;
}

.wein-geo-card-copy h2 {
  font-size: 24px;
}

.wein-geo-card-copy p:not(.label) {
  margin: 14px 0 20px;
}

.wein-geo-card-links {
  margin-top: auto;
}

.subpage-aktuelles .wein-geo-actions .btn,
.subpage-aktuelles .wein-geo-card-links .details,
.subpage-aktuelles .wein-geo-actions .details {
  border-color: #d9d9d9;
}

.subpage-cta {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  margin-top: 30px;
  padding: 22px 26px;
  border: 1px solid rgba(154, 20, 61, .52);
}

.subpage-cta > div {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 22px;
  align-items: center;
}

.subpage-cta span {
  display: block;
  width: 34px;
  height: 46px;
  border: 2px solid var(--g-red);
  border-top-color: transparent;
  border-radius: 0 0 18px 18px;
}

.subpage-cta p {
  grid-column: 2;
  margin: -8px 0 0;
  font-size: 14px;
}

.subpage-sidebar {
  position: sticky;
  top: 104px;
  align-self: start;
  padding: 30px 26px;
  background: var(--g-white);
}

.sidebar-logo {
  display: grid;
  justify-items: center;
  gap: 20px;
  padding-bottom: 28px;
  color: var(--g-red);
  text-align: center;
}

.sidebar-logo img {
  width: min(260px, 100%);
}

.download-icon {
  width: 28px;
  height: 32px;
  border-bottom: 2px solid currentColor;
  position: relative;
}

.download-icon::before,
.download-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  background: currentColor;
  transform: translateX(-50%);
}

.download-icon::before {
  top: 0;
  width: 2px;
  height: 24px;
}

.download-icon::after {
  top: 15px;
  width: 12px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  background: transparent;
  transform: translateX(-50%) rotate(45deg);
}

.sidebar-block {
  padding: 26px 0;
  border-top: 1px solid rgba(154, 20, 61, .34);
}

.sidebar-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.sidebar-head h2 {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sidebar-head::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(154, 20, 61, .34);
}

.sidebar-block > a:not(.sidebar-button) {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 9px 0;
  color: var(--g-red);
  font-size: 14px;
}

.sidebar-block > a:not(.sidebar-button)::after {
  content: "›";
  flex: 0 0 auto;
  font-size: 18px;
  line-height: 1;
}

.wine-list a:not(.sidebar-button) {
  display: flex;
  justify-content: space-between;
}

.wine-list a:not(.sidebar-button)::after {
  content: none;
}

.sidebar-block a em {
  color: #5f5452;
  font-style: normal;
  text-align: right;
}

.sidebar-button {
  display: flex;
  justify-content: center;
  margin-top: 18px;
  padding: 14px 18px;
  border: 1px solid var(--g-red);
  color: var(--g-red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.tavern p:not(.label) {
  margin: 12px 0 18px;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.tavern img {
  width: 100%;
  aspect-ratio: 1.38;
  object-fit: cover;
  margin-bottom: 18px;
}

.editorial-page {
  padding-top: 0;
  background:
    linear-gradient(90deg, #fff 0%, #fff 66%, #fbf5ef 66%, #fbf5ef 100%);
}

.editorial-banner {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  background: #161412;
}

.editorial-banner img,
.editorial-banner-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.editorial-banner-video {
  display: block;
}

.editorial-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 16, 15, .72) 0%, rgba(20, 16, 15, .42) 46%, rgba(20, 16, 15, .08) 100%);
  pointer-events: none;
}

.editorial-banner-content {
  position: absolute;
  left: max(80px, calc((100vw - 1180px) / 2));
  top: clamp(92px, 8vw, 126px);
  bottom: clamp(30px, 4vw, 62px);
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 760px;
  color: var(--g-white);
}

.editorial-banner-content .label {
  color: var(--g-white);
}

.editorial-banner-content h1 {
  max-width: 780px;
  margin: 0;
  color: var(--g-white);
  font-family: var(--g-serif);
  font-size: clamp(42px, 5vw, 60px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
  text-wrap: balance;
}

.editorial-banner-content p:not(.label) {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--g-white);
  font-size: 15px;
  line-height: 1.58;
}

.editorial-inner {
  align-items: start;
  padding-top: 44px;
}

.editorial-main {
  width: 100%;
  padding-bottom: 20px;
  overflow: hidden;
}

.editorial-header {
  border-bottom: 1px solid rgba(154, 20, 61, .36);
  padding-bottom: 30px;
}

.editorial-header .label {
  margin-bottom: 18px;
  color: var(--g-red);
}

.editorial-header h1 {
  max-width: 780px;
  margin: 0 0 24px;
  color: #2d2827;
  font-family: var(--g-serif);
  font-size: clamp(46px, 5.3vw, 68px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
  text-wrap: balance;
}

.editorial-header h1::first-line {
  color: var(--g-red);
}

.editorial-hero-image {
  display: block;
  width: 100%;
  aspect-ratio: 1.82;
  margin: 0 0 24px;
  object-fit: cover;
}

.editorial-header p:not(.label),
.editorial-section p {
  max-width: 760px;
  color: #25201f;
  font-size: 15px;
  line-height: 1.72;
  overflow-wrap: anywhere;
}

.editorial-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, .48fr);
  gap: 38px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid rgba(154, 20, 61, .32);
}

.editorial-section:has(+ .editorial-section.is-no-separator),
.editorial-section.is-no-separator {
  border-bottom: 0;
}

.editorial-gallery {
  margin: 32px 0 10px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(154, 20, 61, .32);
}

.editorial-gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 62%);
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(154, 20, 61, .45) rgba(154, 20, 61, .08);
  scrollbar-width: thin;
}

.editorial-gallery-item {
  margin: 0;
  scroll-snap-align: start;
}

.editorial-gallery-item img {
  display: block;
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
}

.editorial-section:not(:has(.editorial-section-media)) {
  display: block;
}

.editorial-section.is-reverse {
  grid-template-columns: minmax(210px, .48fr) minmax(0, 1fr);
}

.editorial-section.is-reverse .editorial-section-copy {
  grid-column: 2;
}

.editorial-section.is-reverse .editorial-section-media {
  grid-column: 1;
  grid-row: 1;
}

.editorial-section h2 {
  margin: 0 0 18px;
  color: var(--g-red);
  font-family: var(--g-serif);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0;
}

.editorial-section-copy {
  min-width: 0;
}

.editorial-section p:last-child {
  margin-bottom: 0;
}

.editorial-section-media {
  margin: 0;
  min-width: 0;
}

.editorial-section-media.is-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.editorial-section-media img {
  display: block;
  width: 100%;
  aspect-ratio: .86;
  object-fit: cover;
}

.editorial-page-weinprobe .editorial-section {
  align-items: start;
  gap: 42px;
}

.editorial-page-weinprobe .editorial-section:first-of-type {
  padding-top: 22px;
}

.editorial-page-weinprobe .editorial-section-copy {
  max-width: 620px;
}

.editorial-page-weinprobe .editorial-section.is-float-image {
  display: block;
}

.editorial-page-weinprobe .editorial-section.is-float-image .editorial-section-copy {
  max-width: none;
}

.editorial-page-weinprobe .editorial-section-float-media {
  float: right;
  width: min(42%, 360px);
  margin: 4px 0 22px 34px;
}

.editorial-page-weinprobe .editorial-section-media img {
  aspect-ratio: .9;
  object-position: center;
}

.editorial-page-weinprobe .editorial-section:not(:has(.editorial-section-media)) {
  padding: 26px 0;
}

.editorial-cta {
  margin-top: 30px;
  background: rgba(255, 255, 255, .78);
}

.shop-page,
.product-detail {
  background: var(--g-white);
}

.shop-hero {
  min-height: 460px;
  display: grid;
  align-items: center;
  padding: 76px 0;
  color: var(--g-white);
  background-color: #161412;
  background-image:
    linear-gradient(90deg, rgba(18, 17, 16, .72) 0%, rgba(18, 17, 16, .42) 46%, rgba(18, 17, 16, .08) 100%),
    var(--shop-hero-image);
  background-position: center, center;
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
  border-bottom: 1px solid var(--g-line);
}

.shop-hero .label {
  color: var(--g-white);
}

.shop-hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--g-white);
  font-family: var(--g-serif);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 500;
  line-height: 1;
}

.shop-hero p:not(.label) {
  max-width: 520px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: 16px;
  line-height: 1.62;
}

.shop-grid-section {
  padding: 42px 0 54px;
}

.shop-age-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(22, 19, 18, .56);
}

.shop-age-modal[hidden] {
  display: none;
}

.shop-age-dialog {
  width: min(680px, 100%);
  padding: clamp(28px, 5vw, 48px);
  background: #fff;
  border: 1px solid #d9d9d9;
  box-shadow: 0 26px 80px rgba(22, 19, 18, .28);
}

.shop-age-dialog h2 {
  margin: 0;
  color: #161312;
  font-family: var(--g-serif);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 500;
  line-height: 1.08;
}

.shop-age-dialog p:not(.label) {
  max-width: 650px;
  margin: 16px 0 0;
  color: #555;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.65;
}

.shop-age-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
}

.shop-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.shop-sidebar {
  position: sticky;
  top: 96px;
  padding: 22px 18px;
  background: #fdf8f4;
  border: 1px solid var(--g-line);
}

.shop-sidebar h2 {
  margin: 0 0 16px;
  color: var(--g-red);
  font-family: var(--g-serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.1;
}

.shop-sidebar-intro {
  margin: -8px 0 20px;
  color: #625856;
  font-family: Arial, sans-serif;
  font-size: 13px;
  line-height: 1.55;
}

.shop-category-nav {
  display: grid;
  gap: 14px;
}

.shop-category-group {
  display: grid;
  gap: 7px;
  padding-top: 12px;
  border-top: 1px solid var(--g-line);
}

.shop-category-group h3 {
  margin: 0 0 2px;
  color: #211c1b;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.shop-category-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 42px;
  padding: 10px 12px;
  color: #5d4b4b;
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--g-line);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.shop-category-nav a:hover,
.shop-category-nav a:focus,
.shop-category-nav a.is-active {
  color: var(--g-white);
  background: var(--g-red);
  border-color: var(--g-red);
}

.shop-category-nav span {
  display: inline-grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  color: inherit;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0;
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}

.shop-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.shop-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  min-height: 0;
  padding: 0;
  background: #fff;
  border: 1px solid #d9d9d9;
}

.shop-card > a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 320px;
  padding: 22px;
  background: #fff;
  border-bottom: 1px solid #d9d9d9;
  overflow: visible;
}

.shop-card img,
.shop-card img.shop-card-bottle {
  display: block;
  width: auto !important;
  max-width: min(100%, 270px) !important;
  height: auto !important;
  max-height: 320px !important;
  object-fit: contain !important;
  object-position: center center !important;
  align-self: center;
}

.shop-card > div {
  align-self: center;
  width: 100%;
  padding: 22px;
}

.shop-card span {
  color: var(--g-muted);
  font-family: var(--g-serif);
}

.shop-card h2 {
  margin: 0 0 10px;
  font-family: var(--g-serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.06;
}

.shop-card p,
.shop-card em {
  display: block;
  margin: 0 0 10px;
  color: #5f5452;
  font-size: 13px;
  font-style: normal;
}

.shop-card strong {
  display: block;
  color: var(--g-red);
  margin-bottom: 2px;
}

.shop-card-actions {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.shop-card .shop-add-to-cart,
.shop-card .shop-add-to-cart.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  color: var(--g-white);
  background: var(--g-red);
  border: 1px solid var(--g-red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.shop-card .shop-add-to-cart:hover,
.shop-card .shop-add-to-cart.added {
  color: var(--g-red);
  background: transparent;
}

.shop-card .added_to_cart.wc-forward,
.woocommerce-message .button,
.woocommerce-message .wc-forward,
.woocommerce-info .button,
.woocommerce-info .wc-forward,
.woocommerce-error .button,
.woocommerce-error .wc-forward {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  color: var(--g-red);
  background: transparent;
  border: 1px solid var(--g-red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

.shop-card .added_to_cart.wc-forward {
  width: 100%;
}

.shop-card .added_to_cart.wc-forward:hover,
.woocommerce-message .button:hover,
.woocommerce-message .wc-forward:hover,
.woocommerce-info .button:hover,
.woocommerce-info .wc-forward:hover,
.woocommerce-error .button:hover,
.woocommerce-error .wc-forward:hover {
  color: var(--g-white);
  background: var(--g-red);
}

.woocommerce-notices-wrapper {
  width: min(var(--g-inner), calc(100% - (var(--g-desktop-margin) * 2)));
  margin: 28px auto 0;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 58px;
  margin: 0 0 22px;
  padding: 16px 18px;
  color: var(--g-ink);
  background: var(--g-soft);
  border: 1px solid var(--g-line);
  font-size: 13px;
  line-height: 1.45;
}

.woocommerce-message {
  border-left: 4px solid var(--g-red);
}

.woocommerce-info {
  border-left: 4px solid #b3863d;
}

.woocommerce-error {
  align-items: flex-start;
  border-left: 4px solid #9a143d;
  list-style: none;
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before,
.woocommerce-message::after,
.woocommerce-info::after,
.woocommerce-error::after {
  display: none;
}

.woocommerce-cart .section-inner,
.woocommerce-checkout .section-inner,
.woocommerce-account .section-inner {
  max-width: 1180px;
}

.woocommerce-cart h1.section-title,
.woocommerce-checkout h1.section-title,
.woocommerce-account h1.section-title {
  margin-bottom: 34px;
  color: var(--g-red);
  font-family: var(--g-serif);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.woocommerce table.shop_table {
  border: 1px solid var(--g-line);
  border-radius: 0;
  border-collapse: collapse;
  background: var(--g-white);
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  padding: 16px;
  border-color: var(--g-line);
  font-size: 13px;
}

.woocommerce table.shop_table th {
  color: var(--g-red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.woocommerce-cart-form,
.cart-collaterals .cart_totals,
.woocommerce-checkout-review-order,
.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content,
.woocommerce-form-login,
.woocommerce-form-register {
  background: var(--g-soft);
  border: 1px solid var(--g-line);
}

.woocommerce-cart-form {
  padding: 18px;
}

.cart-collaterals .cart_totals,
.woocommerce-checkout-review-order,
.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content,
.woocommerce-form-login,
.woocommerce-form-register {
  padding: 24px;
}

.woocommerce .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce .checkout-button,
.woocommerce a.checkout-button,
.woocommerce a.checkout-button.button,
.woocommerce a.checkout-button.button.alt,
.woocommerce .wc-proceed-to-checkout a.checkout-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  color: var(--g-white) !important;
  background: var(--g-red) !important;
  border: 1px solid var(--g-red);
  border-radius: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.15;
  text-transform: uppercase;
}

.woocommerce .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce .checkout-button:hover,
.woocommerce a.checkout-button:hover,
.woocommerce a.checkout-button.button:hover,
.woocommerce a.checkout-button.button.alt:hover,
.woocommerce .wc-proceed-to-checkout a.checkout-button:hover {
  color: var(--g-red) !important;
  background: transparent !important;
}

.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select {
  min-height: 44px;
  padding: 10px 12px;
  color: var(--g-ink);
  background: var(--g-white);
  border: 1px solid var(--g-line);
  border-radius: 0;
  font: inherit;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
  display: block;
  padding: 12px 14px;
  color: #4f373b;
  background: var(--g-white);
  border: 1px solid var(--g-line);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.woocommerce-account .woocommerce-MyAccount-navigation .is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation a:hover {
  color: var(--g-white);
  background: var(--g-red);
  border-color: var(--g-red);
}

.product-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 34px 0 22px;
  color: #8a7c79;
  font-size: 13px;
}

.product-top {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
  gap: 70px;
  padding-bottom: 38px;
}

.product-gallery {
  position: relative;
  min-width: 0;
}

.product-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  padding: 8px 12px;
  color: var(--g-white);
  background: var(--g-red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-main-image {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
  background: #ffffff;
  border: 1px solid #e7ded9;
}

.product-main-image img {
  width: min(420px, 86%);
  max-height: 500px;
  object-fit: contain;
}

.product-gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  color: #706460;
  background: rgba(255, 255, 255, .74);
  border: 1px solid var(--g-line);
  border-radius: 0;
  cursor: pointer;
  transform: translateY(-50%);
}

.product-gallery-arrow:hover,
.product-gallery-arrow:focus {
  color: var(--g-red);
  border-color: var(--g-red);
}

.product-gallery-arrow.is-prev {
  left: 22px;
}

.product-gallery-arrow.is-next {
  right: 22px;
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.product-thumbs button {
  display: grid;
  place-items: center;
  height: 82px;
  padding: 0;
  background: var(--g-soft);
  border: 1px solid var(--g-line);
  cursor: pointer;
}

.product-thumbs button.is-active {
  border-color: var(--g-red);
}

.product-thumbs img {
  width: 100%;
  height: 80px;
  object-fit: contain;
  padding: 5px;
}

.product-thumbs button:first-child img {
  width: auto;
  height: 76px;
  object-fit: contain;
}

.product-summary-custom {
  align-self: center;
  min-width: 0;
}

.product-summary-custom h1 {
  max-width: 520px;
  margin: 0 0 12px;
  font-family: var(--g-serif);
  font-size: clamp(42px, 4vw, 58px);
  font-weight: 500;
  line-height: 1.02;
}

.product-origin {
  margin: 0 0 20px;
  color: #5f5452;
  font-family: var(--g-serif);
  font-size: 18px;
}

.product-price-custom {
  margin-bottom: 4px;
  color: var(--g-red);
  font-family: var(--g-serif);
  font-size: 28px;
  font-weight: 600;
}

.product-price-custom del {
  color: var(--g-muted);
  font-size: .72em;
}

.product-price-custom ins {
  text-decoration: none;
}

.product-short {
  max-width: 460px;
  margin: 34px 0 24px;
  color: #443a38;
}

.stock-note {
  position: relative;
  margin: 0 0 16px;
  padding-left: 28px;
  color: #71835a;
  font-family: var(--g-serif);
  font-size: 16px;
}

.stock-note::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #6a9a61;
}

.product-cart {
  display: flex;
  gap: 10px;
  align-items: center;
}

.product-cart .quantity input {
  width: 92px;
  height: 50px;
  border: 1px solid var(--g-line);
  border-radius: 0;
  text-align: center;
  font: 600 15px/1 var(--g-sans);
}

.product-cart .btn {
  min-width: 245px;
  height: 50px;
  border: 0;
}

.product-actions {
  display: flex;
  gap: 34px;
  margin-top: 30px;
  color: var(--g-red);
  font-size: 13px;
}

.product-actions a,
.product-actions button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  font: inherit;
  cursor: pointer;
}

.product-facts {
  background: var(--g-soft);
  border-top: 1px solid var(--g-line);
  border-bottom: 1px solid var(--g-line);
}

.product-facts .section-inner {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.product-facts article {
  min-height: 142px;
  padding: 28px 14px;
  text-align: center;
  border-right: 1px solid var(--g-line);
}

.product-facts article:first-child {
  border-left: 1px solid var(--g-line);
}

.product-facts img {
  width: 34px;
  height: 34px;
  margin: 0 auto 14px;
  object-fit: contain;
  opacity: .82;
}

.product-facts h2 {
  margin: 0 0 8px;
  color: #6f3c47;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.product-facts p {
  margin: 0;
  color: #5f5452;
  font-size: 12px;
}

.product-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  padding: 54px 0;
}

.product-story > div > p:not(.label) {
  max-width: 720px;
  margin: 0 0 30px;
}

.product-description-content {
  max-width: 720px;
  margin: 0 0 30px;
  color: #555;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.65;
}

.product-description-content h2 {
  margin: 0 0 14px;
  color: var(--g-red);
  font-family: var(--g-serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0;
}

.product-description-content p {
  margin: 0 0 12px;
}

.product-description-content ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-description-content li {
  padding: 0 0 8px;
  border-bottom: 1px solid var(--g-line);
}

.product-terroir {
  display: grid;
  grid-template-columns: minmax(260px, .88fr) minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.product-terroir img {
  width: 100%;
  aspect-ratio: 1.5;
  object-fit: cover;
}

.product-terroir p:not(.label) {
  margin: 0;
}

.product-mobile-accordions {
  display: none;
}

.related-products {
  padding: 28px 0 54px;
  border-top: 1px solid var(--g-line);
}

.shop-service-strip {
  background: var(--g-soft);
  border-top: 1px solid var(--g-line);
}

.shop-service-strip .section-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.shop-service-strip article {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 15px;
  align-items: start;
  padding: 24px 28px;
  border-right: 1px solid var(--g-line);
}

.shop-service-strip img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  opacity: .82;
}

.shop-service-strip article:first-child {
  border-left: 1px solid var(--g-line);
}

.shop-service-strip h3 {
  margin: 0 0 8px;
  color: var(--g-red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.shop-service-strip p {
  margin: 0;
  color: #5f5452;
  font-size: 12px;
}

.month-page {
  width: 100%;
  margin: 0 auto;
  padding-bottom: 30px;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  background: var(--g-white);
}

.month-page .section-inner {
  width: min(1080px, calc(100% - 48px));
}

.month-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  height: 500px;
  min-height: 500px;
  overflow: hidden;
  color: var(--g-white);
  background-color: #161412;
  background-image:
    linear-gradient(90deg, rgba(18, 17, 16, .72) 0%, rgba(18, 17, 16, .42) 46%, rgba(18, 17, 16, .08) 100%),
    url("assets/images/header_sauvignon.png");
  background-position: center, center;
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
}

.month-hero-copy {
  width: min(var(--g-inner), calc(100% - (var(--g-desktop-margin) * 2)));
  margin: 0 auto;
  padding: 20px 0;
}

.month-hero h1 {
  margin: 0 0 10px;
  max-width: 720px;
  color: var(--g-white);
  font-family: var(--g-serif);
  font-size: 64px;
  font-weight: 500;
  line-height: .96;
}

.month-subtitle {
  margin: 0;
  color: var(--g-white);
  font-size: 24px;
}

.month-rule {
  display: none;
}

.month-hero-copy p:not(.month-subtitle) {
  max-width: 420px;
  margin: 0 0 28px;
  color: var(--g-white);
  font-size: 16px;
}

.month-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 410px);
  gap: 62px;
  padding: 42px 0 38px;
}

.month-copy h2,
.month-offer h2,
.month-why h2,
.month-story h2,
.month-discover h2 {
  margin: 0 0 18px;
  color: var(--g-red);
  font-family: var(--g-serif);
  font-size: 34px;
  font-weight: 500;
  line-height: 1.1;
}

.month-copy p {
  margin: 0 0 16px;
  font-size: 12px;
  line-height: 1.62;
}

.month-copy strong {
  color: var(--g-red);
}

.month-notes {
  align-self: start;
  border: 1px solid var(--g-line);
}

.month-note {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 96px;
  padding: 18px 26px;
  border-bottom: 1px solid var(--g-line);
}

.month-note:last-child {
  border-bottom: 0;
}

.month-note span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--g-red);
}

.month-note span img {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.month-note span::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 2px solid var(--g-white);
  border-radius: 50%;
}

.month-note span:has(img)::before {
  content: none;
}

.month-note h3 {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.month-note p {
  margin: 2px 0 0;
  font-size: 12px;
  line-height: 1.5;
}

.month-offer {
  display: grid;
  grid-template-columns: 96px minmax(190px, .8fr) minmax(210px, .8fr) minmax(220px, .78fr);
  gap: 26px;
  align-items: center;
  margin-top: 22px;
  padding: 28px 34px;
  border: 2px solid rgba(154, 20, 61, .56);
}

.month-offer-icon {
  display: block;
  width: 70px;
  height: auto;
  justify-self: center;
}

.month-offer p {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
}

.month-prices {
  display: grid;
  gap: 12px;
  text-align: center;
}

.month-prices strong {
  display: grid;
  gap: 3px;
  font-size: 15px;
}

.month-prices span {
  color: var(--g-red);
  font-size: 38px;
  font-weight: 500;
}

.month-why {
  min-height: 260px;
  display: grid;
  align-items: center;
  margin-top: 32px;
  padding: 40px 46px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.95) 0%, rgba(255,255,255,.82) 52%, rgba(255,255,255,.18) 100%),
    url("assets/images/journal-grapes.jpg") center right / cover no-repeat;
}

.month-why div {
  max-width: 520px;
}

.month-why p {
  font-size: 12px;
  line-height: 1.62;
}

.month-stories {
  padding: 42px 0 34px;
}

.month-story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
}

.month-story {
  display: grid;
  grid-template-columns: 185px 1fr;
  gap: 22px;
  align-items: start;
}

.month-story + .month-story {
  border-left: 1px solid var(--g-line);
  padding-left: 42px;
}

.month-story img {
  width: 100%;
  aspect-ratio: .82;
  object-fit: cover;
}

.month-story p {
  margin: 0;
  font-size: 12px;
  line-height: 1.62;
}

.month-discover {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
  padding: 34px 42px;
  background: var(--g-soft);
}

.month-discover img {
  width: 100%;
  aspect-ratio: 1.65;
  object-fit: cover;
}

.month-discover p {
  max-width: 560px;
  font-size: 12px;
  line-height: 1.62;
}

.lower-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  width: min(var(--g-inner), calc(100% - (var(--g-desktop-margin) * 2)));
  margin: 0 auto;
  gap: 24px;
  height: 240px;
}

.lower {
  padding: 0;
  background: linear-gradient(90deg, var(--g-soft) 0%, var(--g-soft) 53%, var(--g-white) 53%, var(--g-white) 100%);
}

.tastings.is-retired,
.journal-section.is-retired {
  display: none;
}

.journal-panel,
.experience {
  box-sizing: border-box;
  min-width: 0;
  height: 240px;
  overflow: hidden;
}

.journal-panel {
  padding: 22px 22px 18px;
  background: var(--g-white);
}

.lower-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.lower-head .label {
  margin-bottom: 6px;
}

.lower-head .section-title,
.experience .section-title {
  font-size: 29px;
  line-height: 1.02;
}

.lower-head .text-link {
  margin-top: 9px;
  white-space: nowrap;
}

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

.journal-card {
  display: grid;
  grid-template-rows: 76px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
}

.journal-card img {
  width: 100%;
  height: 76px;
  object-fit: cover;
  margin-bottom: 0;
}

.date {
  color: #7b6f6c;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.journal-card h3 {
  margin: 3px 0 7px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.15;
}

.journal-card p {
  margin: 0 0 12px;
  color: #5f5452;
  font-size: 13px;
}

.experience {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 20px;
  align-items: center;
  padding: 22px;
  background: var(--g-white);
}

.experience p:not(.label) {
  margin: 10px 0 14px;
  color: #5f5452;
  font-size: 13px;
  line-height: 1.4;
}

.experience img {
  width: 100%;
  height: 196px;
  min-height: 0;
  object-fit: cover;
}

.experience .btn {
  min-height: 38px;
  padding: 0 22px;
  font-size: 11px;
}

.split-section {
  display: flex;
  width: 100%;
  max-width: none;
  margin: 0;
  background-color: #f5f0eb;
  font-family: var(--g-sans);
}

.section-eyebrow {
  margin: 0 0 8px;
  color: var(--g-red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.section-headline {
  margin: 0;
  color: #1a1a1a;
  font-family: var(--g-serif);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

.journal-block {
  flex: 0 0 58%;
  padding: 38px 36px 34px max(24px, calc((100vw - 1180px) / 2));
}

.journal-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.journal-link {
  color: var(--g-red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.journal-link:hover {
  text-decoration: underline;
}

.split-section .journal-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 0;
}

.split-section .journal-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 4px;
}

.card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.card-image img:hover {
  transform: scale(1.04);
}

.card-date {
  margin: 0;
  color: #888;
  font-size: 11px;
  letter-spacing: .04em;
}

.card-title {
  margin: 0;
  color: #1a1a1a;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}

.card-link {
  margin-top: 4px;
  color: var(--g-red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}

.card-link:hover {
  text-decoration: underline;
}

.erlebnisse-block {
  flex: 0 0 42%;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(220px, 1fr);
  min-height: 290px;
  border-left: 1px solid #e0d8d0;
}

.erlebnisse-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 34px 30px;
}

.erlebnisse-text {
  max-width: 280px;
  margin: 0;
  color: #444;
  font-size: 14px;
  line-height: 1.65;
}

.split-section .hero-btn {
  align-self: flex-start;
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--g-red);
  color: var(--g-white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color .2s ease;
}

.split-section .hero-btn:hover {
  background-color: #6e1424;
}

.erlebnisse-image {
  min-height: 290px;
  overflow: hidden;
}

.erlebnisse-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-footer {
  padding: 42px 0 20px;
  color: rgba(255, 255, 255, .82);
  background: var(--g-charcoal);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(4, 1fr);
  gap: 44px;
}

.footer-logo {
  width: 170px;
  opacity: .96;
  margin-bottom: 18px;
}

.footer-col h3 {
  margin: 0 0 16px;
  color: var(--g-white);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-col a,
.footer-col p {
  display: block;
  margin: 0 0 7px;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 120;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  width: min(920px, calc(100% - 44px));
  padding: 18px 20px;
  color: #251f1e;
  background: rgba(255, 255, 255, .97);
  border: 1px solid rgba(154, 20, 61, .22);
  box-shadow: 0 18px 48px rgba(36, 32, 31, .18);
  transform: translateX(-50%);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner-copy {
  min-width: 0;
}

.cookie-banner-copy strong {
  display: block;
  margin-bottom: 5px;
  color: var(--g-red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cookie-banner-copy p {
  margin: 0;
  color: #403735;
  font-size: 13px;
  line-height: 1.55;
}

.cookie-banner-copy a {
  color: var(--g-red);
  border-bottom: 1px solid rgba(154, 20, 61, .42);
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.cookie-button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--g-red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}

.cookie-button-primary {
  color: var(--g-white);
  background: var(--g-red);
}

.cookie-button-secondary {
  color: var(--g-red);
  background: transparent;
}

@media (max-width: 980px) {
  :root {
    --g-desktop-margin: 5vw;
    --g-section-gap: 70px;
    --g-inner-gap: 44px;
    --g-grid-gap: 32px;
    --g-card-gap: 24px;
  }

  .editorial-page {
    background: var(--g-white);
    overflow-x: hidden;
  }

  .editorial-banner {
    height: 500px;
  }

  .editorial-banner-content {
    left: 5vw;
    top: clamp(74px, 12vw, 96px);
    bottom: 30px;
    max-width: min(680px, 82vw);
  }

  .editorial-banner-content h1 {
    font-size: clamp(36px, 8vw, 54px);
  }

  .editorial-page-weinprobe .editorial-banner-content {
    left: 20px;
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
  }

  .editorial-page-weinprobe .editorial-banner-content h1 {
    max-width: 340px;
    font-size: clamp(30px, 8vw, 36px);
    line-height: 1.08;
    text-wrap: balance;
  }

  .editorial-page-weinprobe .editorial-banner-content p:not(.label) {
    max-width: 100%;
  }

  .editorial-inner {
    display: block;
    padding-top: 28px;
  }

  .editorial-main,
  .editorial-header,
  .editorial-section,
  .editorial-section-copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .editorial-header h1,
  .editorial-section h2,
  .editorial-header p:not(.label),
  .editorial-section p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .editorial-page .subpage-sidebar {
    margin-top: 34px;
  }

  .editorial-section,
  .editorial-section.is-reverse {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .editorial-section.is-reverse .editorial-section-copy,
  .editorial-section.is-reverse .editorial-section-media {
    grid-column: auto;
    grid-row: auto;
  }

  .editorial-section-media img {
    aspect-ratio: 1.38;
  }

  .editorial-gallery-track {
    grid-auto-columns: minmax(240px, 88%);
  }

  .header-inner {
    position: relative;
    grid-template-columns: 170px 1fr;
  }

  .main-nav {
    display: none;
  }

  .mobile-menu-button {
    position: fixed;
    top: 37px;
    right: 20px;
    z-index: 90;
    display: grid !important;
    align-content: center;
    justify-self: end;
    width: 36px;
    height: 36px;
    padding: 8px 6px;
    color: #391c24;
    background: transparent;
    border: 0;
    cursor: pointer;
    transform: translateY(-50%);
  }

  .mobile-menu-button span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: currentColor !important;
    transition: transform .18s ease, opacity .18s ease;
  }

  .mobile-menu-button::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 9px;
    width: 24px;
    height: 2px;
    background: currentColor;
    box-shadow: 0 7px 0 currentColor, 0 14px 0 currentColor;
  }

  .mobile-menu-button span {
    opacity: 0;
  }

  .mobile-menu-button span + span {
    margin-top: 5px;
  }

  .site-header.is-menu-open .mobile-menu-button::before {
    top: 17px;
    transform: rotate(45deg);
    box-shadow: none;
  }

  .site-header.is-menu-open .mobile-menu-button::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 17px;
    width: 24px;
    height: 2px;
    background: currentColor;
    transform: rotate(-45deg);
  }

  .header-icons {
    position: fixed;
    top: 37px;
    right: 64px;
    z-index: 89;
    transform: translateY(-50%);
  }

  .header-icons .icon-link:not([aria-label="Suche"]) {
    display: none;
  }

  .mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    max-height: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, .98);
    border-bottom: 1px solid var(--g-line);
    box-shadow: 0 22px 34px rgba(36, 32, 31, .1);
    transition: max-height .22s ease;
  }

  .site-header.is-menu-open .mobile-nav {
    max-height: calc(100vh - 74px);
    overflow-y: auto;
  }

  .mobile-nav a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 48px;
    padding: 0 var(--g-desktop-margin);
    color: #4f373b;
    border-top: 1px solid rgba(36, 32, 31, .08);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .mobile-nav a:hover,
  .mobile-nav a:focus {
    color: var(--g-red);
    background: var(--g-soft);
  }

  .mobile-shop-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 16px var(--g-desktop-margin);
    border-top: 1px solid rgba(36, 32, 31, .08);
  }

  .mobile-nav .mobile-shop-actions a {
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 12px;
    color: var(--g-white);
    background: var(--g-red);
    border: 1px solid var(--g-red);
    font-size: 11px;
  }

  .mobile-nav .mobile-shop-actions a:hover,
  .mobile-nav .mobile-shop-actions a:focus {
    color: var(--g-red);
    background: transparent;
  }

  .mobile-nav-section-title {
    display: block;
    padding: 14px var(--g-desktop-margin) 8px;
    color: var(--g-red);
    border-top: 1px solid rgba(36, 32, 31, .08);
    font-family: var(--g-serif);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.1;
  }

  .mobile-nav a.shop-mobile-category {
    justify-content: space-between;
    gap: 12px;
  }

  .mobile-nav a.shop-mobile-category.is-active {
    color: var(--g-white);
    background: var(--g-red);
  }

  .mobile-nav a.shop-mobile-category span {
    display: inline-grid;
    place-items: center;
    min-width: 22px;
    height: 22px;
    padding: 0 7px;
    border: 1px solid currentColor;
    border-radius: 999px;
    font-size: 10px;
    letter-spacing: 0;
  }

  .hero {
    height: 500px;
    min-height: 500px;
    background-position: center, center bottom;
  }

  .subpage-hero {
    height: 500px;
    min-height: 500px;
    background-position: center, center bottom;
  }

  .hero-content {
    width: min(90%, 920px);
    padding: 92px 0;
    text-align: center;
  }

  .subpage-hero-content {
    width: min(90%, 920px);
    padding: 20px 0;
    text-align: center;
  }

  .hero h1,
  .hero p,
  .subpage-hero h1,
  .subpage-hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero .button-row {
    justify-content: center;
  }

  .product-grid,
  .wine-category-grid,
  .manufaktur-grid,
  .vintage-grid,
  .contact-grid,
  .shop-product-grid,
  .product-facts .section-inner,
  .shop-service-strip .section-inner,
  .value-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story,
  .story-wrapper,
  .wine-builder,
  .manufaktur-intro,
  .vintage-intro,
  .tastings,
  .journal-layout,
  .contact-inner,
  .product-top,
  .product-story,
  .product-terroir,
  .month-hero,
  .month-intro,
  .month-offer,
  .month-story-grid,
  .month-discover,
  .subpage-inner,
  .lower-inner,
  .experience,
  .shop-layout,
  .contact-page-grid,
  .contact-form,
  .wine-overview-grid,
  .wein-geo-feature,
  .newsletter-signup-inner {
    grid-template-columns: 1fr;
  }

  .newsletter-signup {
    padding: 68px 0 76px;
  }

  .newsletter-signup-copy {
    padding: 0 0 36px;
    border-right: 0;
    border-bottom: 1px solid rgba(36, 32, 31, .16);
    text-align: center;
  }

  .newsletter-signup-copy p,
  .newsletter-signup-form {
    margin-right: auto;
    margin-left: auto;
  }

  .shop-sidebar {
    position: static;
  }

  .month-hero-copy {
    width: min(520px, calc(100% - 48px));
    margin: 0 24px 0 auto;
    padding: 36px 0 42px;
  }

  .month-offer,
  .month-story + .month-story {
    padding-left: 34px;
  }

  .month-story + .month-story {
    border-left: 0;
    border-top: 1px solid var(--g-line);
    padding-top: 34px;
  }

  .journal-section {
    background: var(--g-soft);
  }

  .tasting-copy {
    max-width: none;
    padding: 44px 24px 50px;
  }

  .tasting-media {
    min-height: 340px;
  }

  .lower {
    background: var(--g-soft);
    padding: 44px 0;
  }

  .lower-inner,
  .story-wrapper,
  .journal-panel,
  .experience {
    height: auto;
    max-height: none;
  }

  .story-wrapper {
    overflow: visible;
  }

  .subpage-sidebar {
    position: static;
  }

  .wein-geo-feature-cover {
    min-height: 300px;
    border-right: 0;
    border-bottom: 1px solid #d9d9d9;
  }

  .wein-geo-grid {
    grid-template-columns: 1fr;
  }

  .story-image {
    height: 320px;
    min-height: 320px;
    max-height: none;
  }

  .wine-showcase-item,
  .wine-showcase-item.is-reverse {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: 0;
  }

  .wine-showcase-item.is-reverse .wine-showcase-copy,
  .wine-showcase-item.is-reverse .wine-showcase-media {
    grid-column: auto;
    grid-row: auto;
  }

  .wine-showcase-media {
    min-height: 100%;
    order: -1;
  }

  .wine-showcase-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 34px;
  }

  .wine-showcase-fact,
  .wine-showcase-fact:first-child {
    padding: 12px 8px;
    border-left: 1px solid rgba(179, 134, 61, .35);
    border-top: 0;
  }

  .wine-showcase-fact:first-child {
    border-left: 0;
  }

  .experience {
    padding: 34px 0 0;
  }
}

@media (max-width: 640px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  .wine-showcase-facts,
  .subpage-main .wine-showcase-facts {
    grid-template-columns: 1fr;
  }

  .wine-showcase-fact,
  .wine-showcase-fact:first-child,
  .subpage-main .wine-showcase-fact,
  .subpage-main .wine-showcase-fact:first-child {
    padding: 14px 0;
    border-left: 0;
    border-top: 1px solid rgba(179, 134, 61, .35);
  }

  :root {
    --g-desktop-margin: 20px;
    --g-section-gap: 56px;
    --g-inner-gap: 32px;
    --g-grid-gap: 24px;
    --g-card-gap: 20px;
  }

  .site-header {
    height: 74px;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    gap: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
    padding: 16px;
  }

  .cookie-banner-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .cookie-button {
    width: 100%;
    padding: 0 12px;
  }

  .header-inner {
    grid-template-columns: 150px 1fr;
    gap: 12px;
  }

  .header-inner,
  .section-inner,
  .hero-content,
  .subpage-hero-content,
  .subpage-feature,
  .subpage-inner,
  .lower-inner {
    width: calc(100% - 40px);
  }

  .newsletter-signup {
    padding: 52px 0 60px;
  }

  .newsletter-signup-inner {
    gap: 34px;
  }

  .newsletter-signup h2 {
    max-width: 100%;
    font-size: clamp(32px, 10vw, 40px);
    line-height: 1.05;
    letter-spacing: .035em;
    overflow-wrap: anywhere;
  }

  .newsletter-signup-copy p {
    max-width: 310px;
    font-size: 15px;
    line-height: 1.65;
  }

  .newsletter-signup-form {
    gap: 16px;
    max-width: 100%;
  }

  .newsletter-input-wrap {
    grid-template-columns: 34px 1fr;
    height: 58px;
    padding: 0 16px;
  }

  .newsletter-input-wrap input {
    font-size: 15px;
  }

  .newsletter-submit {
    min-height: 60px;
    padding: 0 18px 0 20px;
    font-size: 17px;
    letter-spacing: .04em;
  }

  .newsletter-submit span {
    font-size: 28px;
  }

  .newsletter-privacy {
    font-size: 13px;
  }

  .brand img {
    width: 150px;
  }

  .header-icons {
    gap: 12px;
  }

  .mobile-menu-button {
    left: auto;
    right: 16px;
  }

  .header-icons {
    left: auto;
    right: 58px;
  }

  .hero,
  .subpage-hero {
    height: 500px;
    min-height: 500px;
  }

  .editorial-header h1 {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    font-size: clamp(38px, 11vw, 50px);
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .editorial-banner-content h1 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .editorial-banner-content p:not(.label) {
    font-size: 14px;
    line-height: 1.5;
  }

  .editorial-page-weinprobe .editorial-banner-content {
    left: 20px;
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
  }

  .editorial-page-weinprobe .editorial-banner-content h1 {
    max-width: 340px;
    font-size: clamp(30px, 8vw, 34px);
    line-height: 1.08;
  }

  .editorial-page-weinprobe .editorial-banner-content p:not(.label) {
    width: min(100%, 340px);
    max-width: 340px;
    overflow-wrap: normal;
  }

  .editorial-page-weinprobe .editorial-section-float-media {
    float: none;
    width: min(100%, 310px);
    margin: 0 0 22px;
  }

  .editorial-header p:not(.label),
  .editorial-section p,
  .editorial-section h2 {
    width: min(100%, 310px) !important;
    max-width: 310px !important;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .hero h1,
  .subpage-hero h1 {
    font-size: 32px;
  }

  .hero p,
  .subpage-hero p:not(.label) {
    font-size: 16px;
  }

  .subpage-hero h1,
  .subpage-hero p:not(.label) {
    max-width: 320px;
  }

  .products,
  .vintages,
  .contact-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .wine-showcase-intro,
  .wine-showcase-item {
    width: calc(100% - 40px);
  }

  .wine-showcase-item {
    padding: 15px;
  }

  .wine-showcase-copy h2 {
    font-size: 34px;
  }

  .section-head,
  .footer-bottom {
    align-items: start;
    flex-direction: column;
  }

  .product-grid,
  .wine-category-grid,
  .manufaktur-grid,
  .vintage-grid,
  .contact-grid,
  .shop-product-grid,
  .product-facts .section-inner,
  .shop-service-strip .section-inner,
  .journal-cards,
  .value-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 210px;
  }

  .shop-card {
    min-height: 220px;
  }

  .product-main-image {
    min-height: 360px;
  }

  .product-summary-custom h1 {
    width: calc(100vw - 54px);
    max-width: calc(100vw - 54px);
    font-size: 26px;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .product-summary-custom,
  .product-short {
    width: calc(100vw - 140px);
    max-width: calc(100vw - 140px);
  }

  .product-short {
    font-size: 15px;
    line-height: 1.55;
  }

  .product-top {
    gap: 32px;
  }

  .product-cart {
    align-items: stretch;
    flex-direction: column;
  }

  .product-cart .btn,
  .product-cart .quantity input {
    width: 100%;
  }

  .product-thumbs {
    grid-template-columns: repeat(auto-fit, minmax(86px, 1fr));
    gap: 10px;
    overflow: hidden;
  }

  .product-thumbs button {
    min-width: 0;
    height: 82px;
  }

  .product-summary-custom {
    align-self: start;
  }

  .product-story {
    display: none;
  }

  .product-mobile-accordions {
    display: block;
    padding: 0 0 24px;
  }

  .product-mobile-accordions details {
    border-top: 1px solid var(--g-line);
  }

  .product-mobile-accordions details:last-child {
    border-bottom: 1px solid var(--g-line);
  }

  .product-mobile-accordions summary {
    position: relative;
    list-style: none;
    padding: 18px 28px 18px 0;
    color: #6f3c47;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    cursor: pointer;
  }

  .product-mobile-accordions summary::-webkit-details-marker {
    display: none;
  }

  .product-mobile-accordions summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    color: var(--g-red);
    font-size: 19px;
    transform: translateY(-50%);
  }

  .product-mobile-accordions details[open] summary::after {
    content: "–";
  }

  .product-mobile-accordions p {
    margin: 0 0 18px;
    color: #443a38;
  }

  .shop-service-strip article {
    border-bottom: 1px solid var(--g-line);
  }

  .story-copy {
    padding: 40px 22px;
  }

  .manufaktur-card,
  .manufaktur-card:first-child {
    border-left: 1px solid var(--g-line);
  }

  .contact-section {
    padding: 44px 0 46px;
  }

  .contact-card {
    min-height: 0;
  }

  .content-list-item,
  .month-story,
  .subpage-cta,
  .subpage-cta > div {
    grid-template-columns: 1fr;
  }

  .wein-geo-feature {
    margin-top: 28px;
  }

  .wein-geo-feature-cover {
    min-height: 220px;
    padding: 16px;
  }

  .wein-geo-feature-copy,
  .wein-geo-card-copy {
    padding: 22px 16px;
  }

  .wein-geo-feature-copy h2 {
    font-size: clamp(30px, 10vw, 38px);
  }

  .wein-geo-card-copy h2 {
    font-size: 22px;
  }

  .wein-geo-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .wein-geo-actions .btn {
    width: 100%;
  }

  .month-page .section-inner {
    width: min(100% - 28px, 1080px);
  }

  .month-page {
    width: 100%;
    margin-top: 0;
    border-left: 0;
    border-right: 0;
  }

  .month-hero {
    height: 500px;
    min-height: 500px;
    background-image:
      linear-gradient(180deg, rgba(18, 17, 16, .7) 0%, rgba(18, 17, 16, .46) 54%, rgba(18, 17, 16, .74) 100%),
      url("assets/images/header_sauvignon.png");
    background-position: center, center;
    background-size: cover, cover;
    background-repeat: no-repeat, no-repeat;
  }

  .month-hero h1 {
    font-size: 50px;
  }

.month-hero-copy {
  width: min(100% - 44px, 520px);
  margin: 0 auto;
}

  .month-subtitle {
    font-size: 22px;
  }

  .month-offer,
  .month-why,
  .month-discover {
    padding: 26px 22px;
  }

  .subpage-cta {
    align-items: start;
    flex-direction: column;
  }

  .subpage-cta p {
    grid-column: auto;
    margin: 0;
  }

  .wine-builder {
    gap: 22px;
  }

  .wine-category,
  .vintage-card {
    min-height: 0;
  }

  .vintage-card span {
    margin-bottom: 18px;
    font-size: 48px;
  }

  .tasting-copy {
    padding: 40px 22px;
  }

  .tasting-media {
    min-height: 280px;
  }
}

@media (max-width: 980px) {
  .split-section {
    flex-direction: column;
    width: 100%;
  }

  .journal-block {
    border-right: 0;
    border-bottom: 1px solid #e0d8d0;
  }

  .erlebnisse-block {
    flex-direction: row;
  }

  .values-section {
    grid-template-columns: repeat(2, 1fr);
  }

  .value-item:not(:last-child),
  .value-item:nth-child(2) {
    border-right: 0;
  }

  .value-item:nth-child(odd) {
    border-right: 1px solid #e0d8d0;
  }

  .value-item:nth-child(-n + 2) {
    padding-bottom: 32px;
    border-bottom: 1px solid #e0d8d0;
  }
}

@media (max-width: 640px) {
  .shop-hero h1 {
    max-width: calc(100vw - 40px);
    font-size: clamp(42px, 13vw, 54px);
    overflow-wrap: anywhere;
  }

  .shop-page {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .shop-hero .section-inner {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
  }

  .shop-hero p:not(.label),
  .shop-toolbar,
  .shop-grid-section {
    max-width: calc(100vw - 40px);
  }

  .shop-grid-section {
    width: calc(100vw - 40px) !important;
    margin-left: auto;
    margin-right: auto;
  }

  .shop-toolbar {
    display: grid;
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .shop-toolbar .text-link {
    overflow-wrap: anywhere;
    text-align: left;
  }

  .shop-sidebar,
  .shop-results,
  .shop-layout,
  .shop-grid-section,
  .shop-product-grid,
  .shop-category-nav a,
  .shop-card,
  .shop-card > div {
    box-sizing: border-box;
    min-width: 0;
    max-width: 100%;
  }

  .shop-layout,
  .shop-sidebar,
  .shop-results,
  .shop-product-grid,
  .shop-card {
    width: 100%;
    overflow: hidden;
  }

  .shop-category-nav a {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    font-size: 10px;
    overflow-wrap: anywhere;
  }

  .shop-category-nav span {
    display: none;
  }

  .shop-product-grid {
    grid-template-columns: 1fr !important;
  }

  .shop-card {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }

  .shop-card > a {
    height: 286px;
    padding: 18px 14px;
  }

  .shop-card > div {
    padding: 18px 14px;
  }

  .shop-card img,
  .shop-card img.shop-card-bottle {
    max-width: min(100%, 220px) !important;
    max-height: 286px !important;
  }

  .shop-card h2 {
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .shop-card .shop-add-to-cart,
  .shop-card .shop-add-to-cart.button {
    box-sizing: border-box;
    width: 100%;
  }

  .values-section {
    width: calc(100% - 40px);
  }

  .journal-block,
  .erlebnisse-content {
    padding: 32px 24px;
  }

  .journal-header,
  .erlebnisse-block {
    align-items: start;
    flex-direction: column;
  }

  .section-headline {
    font-size: 26px;
  }

  .values-section {
    grid-template-columns: 1fr;
    padding: 40px 24px;
  }

  .value-item,
  .value-item:nth-child(odd) {
    padding: 0 0 32px;
    border-right: 0;
    border-bottom: 1px solid #e0d8d0;
  }

  .value-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }
}

@media (min-width: 981px) {
  .split-section {
    min-height: 290px;
    height: auto;
    overflow: visible;
  }

  .journal-block {
    flex: 0 0 58%;
    padding: 34px 34px 30px max(24px, calc((100vw - 1180px) / 2));
  }

  .journal-header {
    margin-bottom: 16px;
  }

  .split-section .journal-cards {
    gap: 18px;
  }

  .card-image {
    height: 112px;
    aspect-ratio: auto;
  }

  .card-title {
    display: -webkit-box;
    overflow: hidden;
    line-height: 1.28;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .card-link {
    margin-top: auto;
  }

  .erlebnisse-block {
    flex: 0 0 42%;
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(220px, 1fr);
    min-height: 290px;
  }

  .erlebnisse-content {
    justify-content: center;
    padding: 34px 30px;
  }

  .erlebnisse-image {
    min-height: 0;
    height: auto;
    max-height: none;
  }

  .erlebnisse-image img {
    height: 100%;
  }
}
