/* ============================================================
   Weingut Fleck — components
   Header / nav / drawer, hero, cards, wine grid, price list,
   events, kontakt, footer. Shop-specific overrides in shop.css.
   ============================================================ */

/* ---------- header ---------- */

.o-fleck .site-header {
  position: sticky;
  top: 0;
  z-index: 800;
  background: var(--fl-paper);
  border-bottom: 1px solid var(--fl-line);
  transition: box-shadow 0.25s ease;
}
.o-fleck .site-header.is-scrolled {
  box-shadow: var(--fl-shadow);
}
.o-fleck .site-header__bar {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  min-height: var(--fl-header-h);
}

/* text wordmark — the modern voice of the old "WEINGUT . FLECK" gif:
   spaced caps over a big Playfair name, wine red on cream */
.o-fleck .brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  flex-shrink: 0;
  line-height: 1;
}
.o-fleck .brand__word {
  font-family: var(--fl-font-body);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--fl-rose);
  padding-left: 2px;
}
.o-fleck .brand__name {
  font-family: var(--fl-font-display);
  font-weight: 700;
  font-size: 1.9rem;
  letter-spacing: 0.06em;
  color: var(--fl-wine);
}
.o-fleck .brand__name::after {
  /* watercolor dot — the painted-label wink */
  content: "";
  display: inline-block;
  width: 0.32em;
  height: 0.32em;
  margin-left: 0.18em;
  border-radius: 50% 42% 55% 45%;
  background: radial-gradient(circle at 35% 35%, var(--fl-gold), var(--fl-rose) 78%);
  opacity: 0.9;
}

.o-fleck .nav-menu {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
}
.o-fleck .nav-menu a {
  display: block;
  padding: 0.55em 0.7em;
  font-family: var(--fl-font-display);
  font-weight: 600;
  font-size: 1.04rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: var(--fl-ink);
  border-bottom: 2px solid transparent;
}
.o-fleck .nav-menu a:hover { color: var(--fl-wine); }
.o-fleck .nav-menu .current-menu-item a {
  color: var(--fl-wine-dark);
  border-bottom-color: var(--fl-wine);
}

.o-fleck .site-nav { margin-left: auto; }
.o-fleck .site-nav__head { display: none; }
.o-fleck .site-nav__extra { display: none; }

.o-fleck .site-header__cta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
}

/* live Ausg'steckt pill */
.o-fleck .open-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.45em 0.95em;
  border-radius: 999px;
  border: 1px solid var(--fl-line);
  background: var(--fl-card);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--fl-ink);
  white-space: nowrap;
}
.o-fleck .open-status__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--fl-muted);
  flex-shrink: 0;
}
.o-fleck .open-status.is-open .open-status__dot {
  background: var(--fl-open);
  box-shadow: 0 0 0 3px rgba(76, 175, 109, 0.25);
}
.o-fleck .open-status.is-closed .open-status__dot { background: #b4536a; }

/* cart — the ul/li wrapper exists only for Odoo's CartService selectors */
.o-fleck .cart-link-wrap,
.o-fleck .cart-link-wrap li {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.o-fleck .cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--fl-wine-dark);
  background: transparent;
  border: 1px solid var(--fl-line);
  transition: background 0.2s ease, color 0.2s ease;
}
.o-fleck .cart-link:hover { background: var(--fl-wine); color: #fff; }
.o-fleck .cart-link__count {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--fl-rose);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 19px;
  text-align: center;
}

/* hamburger */
.o-fleck .nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--fl-line);
  border-radius: 10px;
  cursor: pointer;
}
.o-fleck .nav-toggle span {
  display: block;
  height: 2px;
  background: var(--fl-ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
body.nav-open .o-fleck .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .o-fleck .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .o-fleck .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- mobile drawer ---------- */

/* the bar is tight: the status pill yields before the nav does */
@media (max-width: 1199px) and (min-width: 1081px) {
  .o-fleck .open-status { display: none; }
}

@media (max-width: 1080px) {
  .o-fleck .nav-toggle { display: flex; }
  .o-fleck .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 950;
    width: min(340px, 88vw);
    background: var(--fl-aubergine);
    color: var(--fl-cream);
    padding: 1.2rem 1.6rem 2rem;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
    margin-left: 0;
  }
  body.nav-open .o-fleck .site-nav { transform: translateX(0); }

  .o-fleck .site-nav__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
  }
  .o-fleck .site-nav__label {
    font-family: var(--fl-font-display);
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--fl-gold);
    margin: 0;
  }
  .o-fleck .site-nav__close {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 8px;
    background: var(--fl-aubergine-2);
    color: var(--fl-cream);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
  }

  .o-fleck .nav-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .o-fleck .nav-menu a {
    padding: 0.8em 0.2em;
    font-size: 1.25rem;
    color: var(--fl-cream);
    border-bottom: 1px solid var(--fl-aubergine-3);
  }
  .o-fleck .nav-menu .current-menu-item a { color: var(--fl-gold); }

  .o-fleck .site-nav__extra {
    display: block;
    margin-top: 1.4rem;
  }

  .o-fleck .nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 900;
    background: rgba(24, 19, 34, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  body.nav-open .o-fleck .nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }
}
@media (max-width: 640px) {
  .o-fleck .open-status { display: none; }
}

/* phone button (drawer + kontakt) */
.o-fleck .btn--phone {
  border-color: rgba(244, 239, 226, 0.4);
  color: var(--fl-cream);
  background: transparent;
  width: 100%;
  justify-content: center;
}
.o-fleck .btn--phone:hover { border-color: var(--fl-gold); color: #fff; }
.o-fleck .btn--phone__icon { display: inline-flex; }

/* ---------- hero ---------- */

.o-fleck .hero {
  padding: 4.5rem 0 5rem;
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(130, 22, 37, 0.08), transparent 60%),
    radial-gradient(900px 480px at -10% 110%, rgba(217, 164, 65, 0.12), transparent 55%),
    var(--fl-paper);
  overflow: hidden;
}
.o-fleck .hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 3.5rem;
  align-items: center;
}
.o-fleck .hero__kicker {
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--fl-wine);
  margin-bottom: 1.1rem;
}
.o-fleck .hero__title {
  font-size: clamp(2.5rem, 5.2vw, 4rem);
  line-height: 1.05;
  margin-bottom: 1.2rem;
}
.o-fleck .hero__title em {
  font-style: italic;
  color: var(--fl-wine-dark);
}
.o-fleck .hero__lede {
  font-size: 1.12rem;
  color: var(--fl-muted);
  max-width: 34em;
  margin-bottom: 1.8rem;
}
.o-fleck .hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2.2rem;
}
.o-fleck .hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
  font-size: 0.92rem;
  color: var(--fl-muted);
  list-style: none;
}
.o-fleck .hero__facts strong { color: var(--fl-ink); font-weight: 600; }

/* label frame — a photo mounted like one of the hand-painted Fleck
   etiketten: white mat, fine double rule (wine outside, mauve inside) */
.o-fleck .label-frame {
  position: relative;
  background: var(--fl-card);
  border: 1px solid var(--fl-wine);
  border-radius: var(--fl-radius);
  padding: 10px;
  box-shadow: var(--fl-shadow-lg);
}
.o-fleck .label-frame::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(116, 83, 121, 0.5);
  border-radius: calc(var(--fl-radius) - 2px);
  pointer-events: none;
}
.o-fleck .label-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--fl-radius) - 3px);
}
.o-fleck .hero .label-frame { aspect-ratio: 4 / 4.2; max-height: 540px; }

/* oval photo — echoes the sign itself */
.o-fleck .oval-frame {
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid var(--fl-card);
  outline: 1px solid var(--fl-mauve);
  box-shadow: var(--fl-shadow-lg);
  aspect-ratio: 4 / 3;
}
.o-fleck .oval-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .o-fleck .hero { padding: 3rem 0 3.5rem; }
  .o-fleck .hero__grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .o-fleck .hero .label-frame { max-height: 420px; }
}

/* ---------- facts strip ---------- */

.o-fleck .facts-strip {
  background: var(--fl-aubergine);
  color: var(--fl-cream);
  padding: 1.4rem 0;
}
.o-fleck .facts-strip__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.o-fleck .fact {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  justify-content: center;
  text-align: left;
}
.o-fleck .fact__icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--fl-aubergine-2);
  color: var(--fl-gold);
  flex-shrink: 0;
}
.o-fleck .fact__label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fl-cream-dim);
  display: block;
}
.o-fleck .fact__value { font-weight: 600; }
@media (max-width: 820px) {
  .o-fleck .facts-strip__row { grid-template-columns: 1fr; gap: 0.9rem; }
  .o-fleck .fact { justify-content: flex-start; }
}

/* ---------- split sections ---------- */

.o-fleck .split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3.5rem;
  align-items: center;
}
.o-fleck .split--rev > :first-child { order: 2; }
@media (max-width: 900px) {
  .o-fleck .split { grid-template-columns: 1fr; gap: 2.2rem; }
  .o-fleck .split--rev > :first-child { order: 0; }
}

/* checklist (Schmankerl etc.) */
.o-fleck .ticks {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  margin: 1.2rem 0 1.6rem;
}
.o-fleck .ticks li {
  padding-left: 1.7em;
  position: relative;
}
.o-fleck .ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 0.95em;
  height: 0.95em;
  border-radius: 50%;
  background: var(--fl-wine);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="black" d="M6.4 12.2 2.7 8.5l1.3-1.3 2.4 2.4 5.6-5.6 1.3 1.3z"/></svg>') center / contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="black" d="M6.4 12.2 2.7 8.5l1.3-1.3 2.4 2.4 5.6-5.6 1.3 1.3z"/></svg>') center / contain no-repeat;
}
.o-fleck .section--dark .ticks li::before { background: var(--fl-gold); }

/* ---------- wine cards (home teaser + /weine grid) ---------- */

.o-fleck .wine-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}
.o-fleck .wine-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 980px) {
  .o-fleck .wine-grid,
  .o-fleck .wine-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .o-fleck .wine-grid,
  .o-fleck .wine-grid--4 { grid-template-columns: 1fr; }
}

.o-fleck .wine-card {
  display: flex;
  flex-direction: column;
  background: var(--fl-card);
  border: 1px solid var(--fl-line);
  border-radius: var(--fl-radius-lg);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.o-fleck .wine-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--fl-shadow-lg);
}
.o-fleck .wine-card__img {
  background: linear-gradient(180deg, #f4efe0, #ece3cd);
  aspect-ratio: 1;
}
.o-fleck .wine-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.o-fleck .wine-card__body {
  padding: 1.2rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}
.o-fleck .wine-card__cat {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fl-muted);
}
.o-fleck .wine-card__name {
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--fl-ink);
}
.o-fleck .wine-card__teaser {
  font-size: 0.94rem;
  color: var(--fl-muted);
  margin: 0;
  flex: 1;
}
.o-fleck .wine-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.9rem;
}
.o-fleck .wine-card__price {
  font-family: var(--fl-font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fl-rose);
}
.o-fleck .wine-card__price small {
  font-family: var(--fl-font-body);
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--fl-muted);
  display: block;
  line-height: 1.1;
}

/* ---------- event cards ---------- */

.o-fleck .event-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
}
.o-fleck .event-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 820px) {
  .o-fleck .event-grid,
  .o-fleck .event-grid--3 { grid-template-columns: 1fr; }
}
.o-fleck .event-card {
  background: var(--fl-card);
  border: 1px solid var(--fl-line);
  border-left: 5px solid var(--fl-wine);
  border-radius: var(--fl-radius);
  padding: 1.6rem 1.8rem;
}
.o-fleck .event-card__when {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fl-rose);
}
.o-fleck .event-card h3 {
  font-size: 1.6rem;
  margin: 0.3rem 0 0.6rem;
}
.o-fleck .event-card p { color: var(--fl-muted); margin: 0; }

/* ---------- Jause (Beispielkarte) ---------- */

.o-fleck .menu-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.4rem 3.5rem;
}
@media (max-width: 820px) {
  .o-fleck .menu-cols { grid-template-columns: 1fr; }
}
.o-fleck .menu-list { list-style: none; display: grid; gap: 0.9rem; }
.o-fleck .menu-item__row {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}
.o-fleck .menu-item__name {
  font-family: var(--fl-font-display);
  font-size: 1.25rem;
  font-weight: 600;
}
.o-fleck .menu-item__dots {
  flex: 1;
  border-bottom: 2px dotted var(--fl-line);
  transform: translateY(-4px);
}
.o-fleck .menu-item__price {
  font-weight: 600;
  color: var(--fl-wine-dark);
  white-space: nowrap;
}
.o-fleck .menu-item__desc {
  font-size: 0.92rem;
  color: var(--fl-muted);
  margin: 0.15rem 0 0;
}
.o-fleck .menu-note {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--fl-muted);
  border-top: 1px solid var(--fl-line);
  padding-top: 1rem;
}

/* ---------- kontakt ---------- */

.o-fleck .kontakt-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
}
@media (max-width: 860px) {
  .o-fleck .kontakt-grid { grid-template-columns: 1fr; }
}
.o-fleck .kontakt-dl {
  display: grid;
  gap: 0.8rem;
  margin: 1.4rem 0;
}
.o-fleck .kontakt-dl dt {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fl-muted);
}
.o-fleck .kontakt-dl dd {
  margin: 0;
  font-size: 1.06rem;
}
.o-fleck .kontakt-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.6rem 0 2.4rem;
}
.o-fleck .map-card {
  background: var(--fl-aubergine);
  color: var(--fl-cream);
  border-radius: var(--fl-radius-lg);
  padding: 1.8rem 2rem;
}
.o-fleck .map-card h3 { font-size: 1.5rem; margin-bottom: 0.7rem; }
.o-fleck .map-card p { color: var(--fl-cream-dim); }

.o-fleck .hours-card {
  background: var(--fl-card);
  border: 1px solid var(--fl-line);
  border-radius: var(--fl-radius);
  padding: 1.4rem 1.6rem;
  max-width: 420px;
}

/* ---------- page hero (subpages) ---------- */

.o-fleck .page-hero {
  padding: 4rem 0 3rem;
  background:
    radial-gradient(900px 400px at 90% -20%, rgba(130, 22, 37, 0.09), transparent 60%),
    radial-gradient(700px 320px at 5% 120%, rgba(217, 164, 65, 0.10), transparent 55%),
    var(--fl-paper);
  border-bottom: 1px solid var(--fl-line);
}
.o-fleck .page-hero__kicker {
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--fl-wine);
  margin-bottom: 0.8rem;
}
.o-fleck .page-hero__title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
}
.o-fleck .page-hero__lede {
  max-width: 46em;
  color: var(--fl-muted);
  font-size: 1.08rem;
  margin: 1rem 0 0;
}

/* ---------- footer ---------- */

.o-fleck .site-footer {
  background: var(--fl-aubergine);
  color: var(--fl-cream);
  margin-top: 0;
}
.o-fleck .footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 0.8fr;
  gap: 2.5rem;
  padding: 3.6rem 0 2.6rem;
}
@media (max-width: 980px) {
  .o-fleck .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .o-fleck .footer-grid { grid-template-columns: 1fr; }
}
.o-fleck .footer-sign {
  width: 168px;
  height: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
}
.o-fleck .footer-tagline {
  color: var(--fl-cream-dim);
  font-size: 0.95rem;
  max-width: 30em;
}
.o-fleck .footer-head {
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
  color: var(--fl-gold);
}
.o-fleck .footer-address { color: var(--fl-cream-dim); line-height: 1.7; }
.o-fleck .site-footer a { color: var(--fl-cream); }
.o-fleck .site-footer a:hover { color: var(--fl-gold); }

.o-fleck .hours-list { list-style: none; display: grid; gap: 0.35rem; max-width: 320px; }
.o-fleck .hours-list__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px dotted var(--fl-aubergine-3);
  padding-bottom: 0.35rem;
}
.o-fleck .hours-list__row--sub { color: var(--fl-cream-dim); font-size: 0.92rem; }
/* on light backgrounds (kontakt page) */
.o-fleck .section:not(.section--dark) .hours-list__row { border-bottom-color: var(--fl-line); }
.o-fleck .section:not(.section--dark) .hours-list__row--sub { color: var(--fl-muted); }

.o-fleck .footer-note {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--fl-cream-dim);
}
.o-fleck .footer-links { list-style: none; display: grid; gap: 0.5rem; }

.o-fleck .footer-bottom {
  border-top: 1px solid var(--fl-aubergine-3);
  padding: 1.2rem 0;
  background: rgba(0, 0, 0, 0.14);
}
.o-fleck .footer-bottom__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem 1.5rem;
  font-size: 0.88rem;
  color: var(--fl-cream-dim);
}
.o-fleck .footer-bottom__row p { margin: 0; }
.o-fleck .footer-18 { font-style: italic; }
.o-fleck .footer-legal {
  list-style: none;
  display: flex;
  gap: 1.4rem;
}

/* ---------- Familie (portrait cards) ---------- */

.o-fleck .family-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}
@media (max-width: 980px) {
  .o-fleck .family-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .o-fleck .family-grid { grid-template-columns: 1fr; }
}
.o-fleck .person-card {
  background: var(--fl-card);
  border: 1px solid var(--fl-line);
  border-radius: var(--fl-radius-lg);
  padding: 1.8rem 1.6rem 1.6rem;
  text-align: center;
}
.o-fleck .person-card__photo {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.1rem;
  border: 4px solid var(--fl-card);
  outline: 1px solid var(--fl-mauve);
  box-shadow: var(--fl-shadow);
}
.o-fleck .person-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.o-fleck .person-card h3 { font-size: 1.45rem; }
.o-fleck .person-card__role {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fl-rose);
  margin: 0.25rem 0 0.7rem;
}
.o-fleck .person-card p { color: var(--fl-muted); font-size: 0.95rem; margin: 0; }

/* ---------- Anfahrt map (the redrawn 2004 plan) ---------- */

.o-fleck .map-image {
  background: #fff;
  border: 1px solid var(--fl-line);
  border-radius: var(--fl-radius-lg);
  padding: 1rem;
  box-shadow: var(--fl-shadow);
}
.o-fleck .map-image img { display: block; width: 100%; height: auto; }
.o-fleck .map-image figcaption {
  font-size: 0.82rem;
  color: var(--fl-muted);
  padding-top: 0.6rem;
  text-align: center;
}

/* ---------- Geschenke band (hand-painted bottles) ---------- */

.o-fleck .gift-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 2.5rem;
  align-items: center;
  background: var(--fl-aubergine-2);
  border: 1px solid var(--fl-aubergine-3);
  border-radius: var(--fl-radius-lg);
  padding: 2.2rem 2.4rem;
}
@media (max-width: 820px) {
  .o-fleck .gift-band { grid-template-columns: 1fr; }
}
.o-fleck .gift-band__art {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.o-fleck .gift-band__art img {
  width: 104px;
  border-radius: 4px;
  border: 3px solid var(--fl-card);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  transform: rotate(-3deg);
}
.o-fleck .gift-band__art img + img { transform: rotate(2.5deg); }
