/* ART Bakery – Main CSS
   Farbsystem: NCS S 2020-G70Y = #C0C18E (Sage/Mint)
   WCAG AA geprüft: alle Kontraste ≥ 4.5:1 (Text) / 3:1 (UI)
*/

:root {
  --sage:      #C0C18E;
  --sage-d:    #9a9b6a;
  --sage-l:    #d8d9a8;
  --sage-bg:   #e4e5c8;
  --dark:      #1F2E22;
  --dark2:     #07180E;
  --terra:     #C8622A;
  --terra-btn: #a04d20; /* WCAG AA: 5.87:1 auf Weiss */
  --terra-d:   #8a3e18;
  --bg:        #F2EDE4;
  --bg2:       #EBE4D8;
  --txt:       #2a2a24;
  --txt-m:     #5a5a50;
  --txt-l:     #8a8a78;
  --rule:      rgba(31,46,34,.12);
  --w:         #ffffff;
  --fs:        Georgia, 'Times New Roman', serif;
  --fn:        system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --ease:      cubic-bezier(.22,.68,0,1.2);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--fn);
  background: var(--bg);
  color: var(--txt);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--terra); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* ─── SCREEN-READER ONLY ─── */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ─── SKIP LINK ─── */
.skip-link {
  position: absolute; top: -999px; left: 8px;
  background: var(--dark); color: var(--w);
  padding: 8px 16px; font-size: 13px; border-radius: 2px; z-index: 9999;
}
.skip-link:focus { top: 8px; }

/* ─── TOP BAR ─── */
.ab-topbar {
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  padding: 9px 40px; gap: 24px; position: relative;
}
.ab-topbar__text {
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.ab-topbar__dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--sage); opacity: .6; flex-shrink: 0;
}
.ab-topbar__ig {
  display: flex; align-items: center; gap: 6px;
  color: var(--sage); font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  transition: opacity .2s; position: absolute; right: 40px;
}
.ab-topbar__ig:hover { opacity: .75; }
.ab-topbar__ig svg { width: 14px; height: 14px; }

/* ─── NAV ─── */
.ab-nav {
  background: var(--sage);
  border-bottom: 1px solid rgba(31,46,34,.18);
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 72px;
}
.ab-nav__logo { display: flex; align-items: center; }
.ab-nav__logo img {
  height: 52px; width: auto;
  mix-blend-mode: multiply;
}
.ab-nav__links {
  display: flex; align-items: center; gap: 24px; list-style: none;
}
.ab-nav__links a {
  color: var(--dark); font-size: 15px; letter-spacing: .08em; text-transform: uppercase;
  transition: opacity .2s; opacity: .75;
}
.ab-nav__links a:hover { opacity: 1; }
.ab-nav__actions { display: flex; align-items: center; gap: 10px; }
.btn-nav {
  background: var(--terra-btn); color: var(--w); border: none;
  padding: 10px 24px; font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  border-radius: 2px; cursor: pointer; transition: background .2s; display: inline-block;
}
.btn-nav:hover { background: var(--terra-d); }
.btn-lang {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid var(--dark); color: var(--dark);
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  transition: background .2s, color .2s; flex-shrink: 0;
}
.btn-lang:hover { background: var(--dark); color: var(--w); }

/* ─── HAMBURGER ─── */
.ab-nav__burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; background: none; border: none; z-index: 200;
}
.ab-nav__burger span {
  display: block; width: 24px; height: 2px;
  background: var(--dark); border-radius: 1px;
  transition: transform .3s, opacity .3s;
}
.ab-nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ab-nav__burger.is-open span:nth-child(2) { opacity: 0; }
.ab-nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE MENU ─── */
.ab-mobile-menu {
  display: none; position: fixed; inset: 0;
  background: var(--sage); z-index: 150;
  flex-direction: column; align-items: center; justify-content: center; gap: 0;
  padding: 80px 24px 40px;
}
.ab-mobile-menu.is-open { display: flex; }

.ab-mobile-menu__close {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer; padding: 8px;
  color: var(--dark);
}
.ab-mobile-menu__close svg { width: 24px; height: 24px; }

.ab-mobile-menu__logo {
  height: 64px; width: auto; margin-bottom: 12px;
  mix-blend-mode: multiply;
}
.ab-mobile-menu a {
  color: var(--dark); font-size: 20px; letter-spacing: .08em; text-transform: uppercase;
  padding: 16px 0; border-bottom: 1px solid rgba(31,46,34,.12);
  width: 100%; max-width: 280px; text-align: center; transition: opacity .2s;
}
.ab-mobile-menu a:first-of-type { border-top: 1px solid rgba(31,46,34,.12); }
.ab-mobile-menu a:hover { opacity: .6; }
.ab-mobile-menu__actions {
  display: flex; flex-direction: column; gap: 12px; margin-top: 28px;
  align-items: center; width: 100%; max-width: 280px;
}
.ab-mobile-menu__actions .btn-lang {
  border: 1.5px solid var(--dark);
}
.ab-mobile-menu__actions .btn-nav {
  white-space: nowrap; width: 100%; text-align: center;
  padding-left: 24px; padding-right: 24px;
}

/* ─── BUTTONS ─── */
.btn-fill {
  background: var(--terra-btn); color: var(--w); border: none;
  padding: 15px 32px; font-size: 13px; letter-spacing: .1em; text-transform: uppercase;
  border-radius: 2px; cursor: pointer; transition: background .2s; display: inline-block;
}
.btn-fill:hover { background: var(--terra-d); }
.btn-outline {
  background: transparent; color: var(--dark); border: 1px solid var(--dark);
  padding: 15px 32px; font-size: 13px; letter-spacing: .1em; text-transform: uppercase;
  border-radius: 2px; cursor: pointer; transition: border-color .2s, background .2s; display: inline-block;
}
.btn-outline:hover { background: var(--dark); color: var(--w); }
.btn-sage {
  background: var(--sage); color: var(--dark); border: none;
  padding: 15px 32px; font-size: 13px; letter-spacing: .1em; text-transform: uppercase;
  border-radius: 2px; cursor: pointer; transition: background .2s; display: inline-block;
}
.btn-sage:hover { background: var(--sage-d); color: var(--w); }

/* ─── EYEBROW / SECTION LABELS ─── */
/* terra #C8622A auf bg #F2EDE4 wäre 3.5:1 – terra-d #8a3e18 ergibt 6.6:1 */
.eyebrow {
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--terra-d); margin-bottom: 20px; display: block;
}
.sec-h {
  font-family: var(--fs); font-size: clamp(28px, 4vw, 52px);
  font-weight: normal; line-height: 1.12; color: var(--dark);
  text-wrap: balance; margin-bottom: 16px;
}
.sec-t {
  font-size: 16px; line-height: 1.8; color: var(--txt-m);
  max-width: 400px; margin-bottom: 36px;
}

/* ─── HERO ─── */
.ab-hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 88vh; }
.ab-hero__content {
  background: var(--dark);
  padding: clamp(56px,7vw,100px) clamp(40px,5vw,80px);
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.ab-hero__content::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 10% 80%, rgba(192,193,142,.14) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 10%, rgba(192,193,142,.07) 0%, transparent 50%);
}
.ab-hero__content > * { position: relative; z-index: 1; }
.ab-hero__eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 32px;
}
.ab-hero__eyebrow::after {
  content: ''; width: 40px; height: 1px; background: var(--sage); opacity: .4;
}
.ab-hero__title {
  font-family: var(--fs);
  font-size: clamp(60px, 8.5vw, 108px);
  font-weight: normal; line-height: .9; letter-spacing: -.02em;
  color: var(--w); margin-bottom: 32px;
}
.ab-hero__title span { display: block; }
.ab-hero__sub {
  font-size: 17px; line-height: 1.8; color: rgba(255,255,255,.65);
  max-width: 340px; margin-bottom: 44px;
}
.ab-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.ab-hero__loc {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.4); font-size: 12px; letter-spacing: .07em;
}
.ab-hero__loc svg { width: 13px; height: 13px; color: var(--sage); }
.ab-hero__image { position: relative; overflow: hidden; }
.ab-hero__image img { width: 100%; height: 100%; object-fit: cover; }
.ab-hero__image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(175deg, rgba(31,46,34,.25) 0%, rgba(0,0,0,.1) 60%, rgba(0,0,0,.3) 100%);
}
.ab-hero__caption {
  position: absolute; bottom: 28px; right: 28px;
  background: rgba(242,237,228,.88); backdrop-filter: blur(4px);
  padding: 10px 16px; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--dark);
}
/* Fallback wenn kein Bild */
.ab-hero__image--placeholder {
  background: linear-gradient(140deg, #7a8a62 0%, #a8ab78 25%, #c0c18e 45%, #d8d9a8 65%, #9a9b6a 100%);
}

/* ─── STRIP ─── */
.ab-strip {
  background: var(--sage);
  display: flex; align-items: center; justify-content: center;
  gap: clamp(24px, 4vw, 64px); padding: 14px 40px; overflow: hidden;
}
.ab-strip__item {
  display: flex; align-items: center; gap: 9px;
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--dark); white-space: nowrap; opacity: .85;
}
.ab-strip__item svg { width: 14px; height: 14px; opacity: .7; }

/* ─── TAGESZEITEN ─── */
.ab-tz { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--sage); }
.ab-tz__card {
  padding: clamp(36px,5vw,60px) clamp(28px,4vw,48px);
  border-right: 1px solid rgba(31,46,34,.15);
  position: relative; overflow: hidden; transition: background .25s;
}
.ab-tz__card:last-child { border-right: none; }
.ab-tz__card:hover { background: var(--sage-d); }
.ab-tz__card:hover .ab-tz__text { color: rgba(255,255,255,.75); }
.ab-tz__card:hover .ab-tz__title { color: var(--w); }
.ab-tz__card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--dark);
}
/* terra #C8622A auf sage #C0C18E wäre 2.2:1 – dark #1F2E22 ergibt 8.5:1 */
.ab-tz__label { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--dark); margin-bottom: 18px; display: block; }
.ab-tz__thumb {
  width: 64px; height: 64px; border-radius: 50%;
  margin-bottom: 20px; border: 3px solid rgba(255,255,255,.5);
  overflow: hidden; flex-shrink: 0; background: var(--sage-d);
}
.ab-tz__thumb img { width: 100%; height: 100%; object-fit: cover; }
.ab-tz__title {
  font-family: var(--fs); font-size: clamp(24px,2.5vw,34px);
  font-weight: normal; line-height: 1.1; color: var(--dark); margin-bottom: 14px; transition: color .25s;
}
/* txt-m #5a5a50 auf sage #C0C18E wäre 3.8:1 – txt #2a2a24 ergibt 7.8:1 */
.ab-tz__text { font-size: 15px; line-height: 1.75; color: var(--txt); margin-bottom: 28px; transition: color .25s; }
.ab-tz__arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border: 1px solid rgba(31,46,34,.2); border-radius: 50%;
  font-size: 14px; color: var(--txt-l); transition: background .2s, color .2s, border-color .2s;
}
.ab-tz__card:hover .ab-tz__arrow { background: var(--terra-btn); color: var(--w); border-color: var(--terra-btn); }

/* ─── POPUP ─── */
.ab-popup { display: grid; grid-template-columns: 1fr 1fr; min-height: 540px; }
.ab-popup__photo { position: relative; overflow: hidden; background: var(--sage-d); }
.ab-popup__photo img { width: 100%; height: 100%; object-fit: cover; }
.ab-popup__photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(175deg, rgba(31,46,34,.2) 0%, rgba(0,0,0,.15) 100%);
}
.ab-popup__photo-tag {
  position: absolute; bottom: 22px; left: 22px;
  font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.6);
}
.ab-popup__content {
  background: var(--sage-bg);
  padding: clamp(44px,6vw,84px); display: flex; flex-direction: column; justify-content: center;
}
.ab-info-row { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
.ab-info-icon {
  width: 36px; height: 36px; border: 1px solid var(--rule); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
  background: var(--w);
}
.ab-info-icon svg { width: 14px; height: 14px; color: var(--terra); }
/* txt-l #8a8a78 auf bg #F2EDE4 wäre 3.0:1 – txt-m #5a5a50 ergibt 5.1:1 */
.ab-info-lbl { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--txt-m); margin-bottom: 3px; }
.ab-info-val { font-family: var(--fs); font-size: 20px; color: var(--dark); }

/* ─── BROT ─── */
.ab-brot { display: grid; grid-template-columns: 1fr 1fr 1fr; background: var(--dark2); }
.ab-brot__left { padding: clamp(44px,6vw,84px); display: flex; flex-direction: column; justify-content: center; }
.ab-brot__title {
  font-family: var(--fs); font-size: clamp(28px,3.5vw,48px);
  font-weight: normal; line-height: 1.12; color: var(--w); text-wrap: balance; margin-bottom: 14px;
}
.ab-brot__sub { font-size: 15px; line-height: 1.8; color: rgba(255,255,255,.6); margin-bottom: 36px; }
.ab-brot__features { display: flex; flex-direction: column; gap: 16px; }
.ab-brot__feat { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.6); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.ab-brot__feat-ico {
  width: 32px; height: 32px; border: 1px solid rgba(192,193,142,.3); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ab-brot__feat-ico svg { width: 12px; height: 12px; color: var(--sage); }
.ab-brot__photo { position: relative; overflow: hidden; background: var(--sage-d); }
.ab-brot__photo img { width: 100%; height: 100%; object-fit: cover; }
.ab-brot__photo-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.25) 100%); }
.ab-brot__right {
  background: var(--sage-bg);
  padding: clamp(44px,6vw,84px); display: flex; flex-direction: column; justify-content: center;
}
.ab-brot__right-title {
  font-family: var(--fs); font-size: clamp(26px,3vw,42px);
  font-weight: normal; line-height: 1.12; color: var(--dark); text-wrap: balance; margin-bottom: 14px;
}
.ab-brot__right-text { font-size: 15px; line-height: 1.8; color: var(--txt-m); margin-bottom: 28px; }
.ab-brot__right-tag { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--txt-l); padding-top: 24px; border-top: 1px solid var(--rule); }

/* ─── PARTNER ─── */
.ab-partner { background: var(--sage-bg); padding: clamp(60px,7vw,96px) clamp(32px,5vw,72px); }
.ab-partner__hdr { margin-bottom: 40px; display: flex; align-items: center; gap: 18px; }
.ab-partner__label { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--txt-l); }
.ab-partner__rule { flex: 1; height: 1px; background: var(--rule); }
.ab-partner__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; background: rgba(31,46,34,.1); }
.ab-partner__card { background: var(--sage-bg); overflow: hidden; transition: background .2s; display: flex; flex-direction: column; }
.ab-partner__card:hover { background: var(--sage-l); }
.ab-partner__photo { height: 180px; position: relative; overflow: hidden; background: var(--sage-d); }
.ab-partner__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.ab-partner__card:hover .ab-partner__photo img { transform: scale(1.04); }
.ab-partner__photo-overlay { position: absolute; inset: 0; background: rgba(31,46,34,0); transition: background .3s; }
.ab-partner__card:hover .ab-partner__photo-overlay { background: rgba(31,46,34,.08); }
.ab-partner__tag { position: absolute; top: 12px; left: 12px; background: rgba(31,46,34,.7); color: var(--sage); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; padding: 4px 8px; }
.ab-partner__info { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.ab-partner__name { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--dark); margin-bottom: 7px; font-weight: 600; }
.ab-partner__desc { font-size: 14px; line-height: 1.65; color: var(--txt-m); flex: 1; }
.ab-partner__arr { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--terra); margin-top: 16px; transition: gap .2s var(--ease); }
.ab-partner__card:hover .ab-partner__arr { gap: 10px; }

/* ─── KAFFEE ─── */
.ab-kaffee { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; }
.ab-kaffee__content {
  background: var(--sage);
  padding: clamp(44px,6vw,84px); display: flex; flex-direction: column; justify-content: center;
}
.ab-kaffee__title {
  font-family: var(--fs); font-size: clamp(28px,4vw,52px);
  font-weight: normal; line-height: 1.12; color: var(--dark); text-wrap: balance; margin-bottom: 16px;
}
.ab-kaffee__text { font-size: 16px; line-height: 1.8; color: var(--txt-m); max-width: 380px; margin-bottom: 32px; }
.ab-kaffee__detail { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 36px; }
.ab-kaffee__detail-item { padding: 16px; background: rgba(31,46,34,.07); border-radius: 2px; }
.ab-kaffee__detail-lbl { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--txt-l); margin-bottom: 6px; }
.ab-kaffee__detail-val { font-family: var(--fs); font-size: 17px; color: var(--dark); }
.ab-kaffee__photo { position: relative; overflow: hidden; background: var(--dark2); }
.ab-kaffee__photo img { width: 100%; height: 100%; object-fit: cover; }
.ab-kaffee__photo-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(192,193,142,.08) 0%, rgba(0,0,0,.15) 100%); }

/* ─── STORY ─── */
.ab-story { display: grid; grid-template-columns: 1fr 1fr; min-height: 540px; }
.ab-story__photos { display: grid; grid-template-columns: 1fr 1fr; }
.ab-story__photo { position: relative; overflow: hidden; background: var(--sage-d); }
.ab-story__photo img { width: 100%; height: 100%; object-fit: cover; }
.ab-story__photo-overlay { position: absolute; inset: 0; background: rgba(31,46,34,.15); }
.ab-story__content {
  background: var(--sage-bg);
  padding: clamp(44px,6vw,84px); display: flex; flex-direction: column; justify-content: center;
}
.ab-story__title {
  font-family: var(--fs); font-size: clamp(30px,4vw,52px);
  font-weight: normal; line-height: 1.1; color: var(--dark); text-wrap: balance; margin-bottom: 20px;
}
.ab-story__text { font-size: 16px; line-height: 1.85; color: var(--txt-m); margin-bottom: 36px; }
.ab-story__byline {
  font-size: 13px; color: var(--txt-l); letter-spacing: .06em;
  padding-top: 20px; border-top: 1px solid var(--rule); margin-bottom: 28px;
}

/* ─── MEISTER ─── */
.ab-meister {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 560px;
  background: var(--dark);
}
.ab-meister__photo {
  position: relative; overflow: hidden; background: var(--dark2);
}
.ab-meister__photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  display: block;
}
.ab-meister__photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--dark) 100%);
}
.ab-meister__content {
  padding: clamp(48px,6vw,88px) clamp(40px,5vw,72px);
  display: flex; flex-direction: column; justify-content: center;
}
.ab-meister__eyebrow {
  font-size: 13px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 28px;
  display: flex; align-items: center; gap: 10px;
}
.ab-meister__eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--sage); opacity: .5; }
.ab-meister__head { margin-bottom: 28px; }
.ab-meister__name {
  font-family: var(--fs);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: normal; line-height: 1; letter-spacing: -.02em;
  color: var(--w); margin-bottom: 8px;
}
.ab-meister__titel {
  display: block; font-size: 14px; color: var(--sage);
  letter-spacing: .06em; margin-bottom: 14px;
}
.ab-meister__badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--terra); background: rgba(200,98,42,.12);
  border: 1px solid rgba(200,98,42,.3);
  padding: 5px 12px; border-radius: 2px;
}
.ab-meister__badge svg { flex-shrink: 0; }
.ab-meister__text { margin-bottom: 28px; }
.ab-meister__text p {
  font-size: 15px; line-height: 1.85; color: rgba(255,255,255,.6);
  margin-bottom: 14px; max-width: 400px;
}
.ab-meister__text p:last-child { margin-bottom: 0; }
.ab-meister__zitat {
  font-family: var(--fs); font-size: clamp(16px, 1.8vw, 20px);
  font-weight: normal; font-style: italic; line-height: 1.5;
  color: rgba(255,255,255,.85); margin: 0 0 28px;
  padding-left: 20px; border-left: 2px solid var(--sage);
  max-width: 380px;
}
.ab-meister__link {
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--sage); text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  transition: opacity .2s;
}
.ab-meister__link:hover { opacity: .7; }

/* ─── FOOTER ─── */
.ab-footer {
  background: var(--dark);
  border-top: 1px solid rgba(192,193,142,.15);
  padding: clamp(56px,6vw,80px) clamp(32px,5vw,72px);
}
.ab-footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 52px; }
.ab-footer__logo img { height: 72px; width: auto; filter: invert(1); margin-bottom: 16px; }
.ab-footer__tagline { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.4); margin-top: 14px; }
.ab-footer__col-title { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 18px; display: block; }
.ab-footer__hours-row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 9px 0; border-bottom: 1px solid rgba(192,193,142,.12); }
.ab-footer__hours-row:first-child { border-top: 1px solid rgba(192,193,142,.12); }
.ab-footer__hours-day { font-size: 13px; letter-spacing: .04em; color: rgba(255,255,255,.55); }
.ab-footer__hours-time { font-size: 13px; color: rgba(255,255,255,.9); white-space: nowrap; }
.ab-footer__hours-closed { font-size: 13px; color: rgba(255,255,255,.3); font-style: italic; }
.ab-footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ab-footer__links a { color: rgba(255,255,255,.6); font-size: 14px; transition: color .2s; }
.ab-footer__links a:hover { color: var(--sage); }
.ab-footer__social { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.6); font-size: 14px; margin-bottom: 10px; transition: color .2s; }
.ab-footer__social:hover { color: var(--sage); }
.ab-footer__social svg { width: 15px; height: 15px; flex-shrink: 0; }
.ab-footer__bar { border-top: 1px solid rgba(192,193,142,.12); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.ab-footer__copy { font-size: 12px; color: rgba(255,255,255,.3); letter-spacing: .04em; }
.ab-footer__open { font-size: 12px; color: var(--sage); letter-spacing: .1em; text-transform: uppercase; }

/* ─── RESPONSIVE ─── */
@media (max-width: 767px) {
  /* TOPBAR */
  .ab-topbar { padding: 8px 16px; gap: 12px; }
  .ab-topbar__text:nth-child(3),
  .ab-topbar__dot:nth-child(4) { display: none; }
  .ab-topbar__ig { display: none; }

  /* NAV */
  .ab-nav { padding: 0 20px; height: 64px; }
  .ab-nav__links, .ab-nav__actions { display: none; }
  .ab-nav__burger { display: flex; }

  /* HERO */
  .ab-hero { grid-template-columns: 1fr; min-height: auto; }
  .ab-hero__content { padding: 48px 24px 40px; }
  .ab-hero__title { font-size: clamp(52px, 14vw, 80px); }
  .ab-hero__sub { font-size: 15px; max-width: 100%; }
  .ab-hero__image { height: 55vw; min-height: 200px; }
  .ab-hero__actions { flex-direction: column; }
  .ab-hero__actions .btn-fill,
  .ab-hero__actions .btn-sage { width: 100%; text-align: center; }

  /* STRIP */
  .ab-strip { gap: 16px; padding: 12px 20px; flex-wrap: wrap; justify-content: center; }
  .ab-strip__item:nth-child(3), .ab-strip__item:nth-child(4) { display: none; }

  /* TAGESZEITEN */
  .ab-tz { grid-template-columns: 1fr; }
  .ab-tz__card { border-right: none; border-bottom: 1px solid rgba(31,46,34,.15); }
  .ab-tz__card:last-child { border-bottom: none; }
  .ab-tz__card::before { width: 3px; height: auto; top: 0; bottom: 0; left: 0; right: auto; }

  /* POPUP */
  .ab-popup { grid-template-columns: 1fr; }
  .ab-popup__photo { height: 260px; }
  .ab-popup__content { padding: 36px 24px; }

  /* BROT */
  .ab-brot { grid-template-columns: 1fr; }
  .ab-brot__left, .ab-brot__right { padding: 40px 24px; }
  .ab-brot__photo { height: 280px; }

  /* PARTNER */
  .ab-partner { padding: 48px 20px; }
  .ab-partner__grid { grid-template-columns: 1fr 1fr; }

  /* KAFFEE */
  .ab-kaffee { grid-template-columns: 1fr; }
  .ab-kaffee__content { padding: 40px 24px; }
  .ab-kaffee__photo { height: 260px; }

  /* STORY */
  .ab-story { grid-template-columns: 1fr; }
  .ab-story__photos { height: 240px; }
  .ab-story__content { padding: 40px 24px; }

  /* MEISTER */
  .ab-meister { grid-template-columns: 1fr; }
  .ab-meister__photo { height: 320px; }
  .ab-meister__photo-overlay { background: linear-gradient(to bottom, transparent 60%, var(--dark) 100%); }
  .ab-meister__content { padding: 36px 24px 48px; }
  .ab-meister__zitat { max-width: 100%; }

  /* FOOTER */
  .ab-footer { padding: 48px 20px; }
  .ab-footer__inner { grid-template-columns: 1fr; gap: 36px; }
  .ab-footer__bar { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* BUTTONS full-width */
  .btn-fill, .btn-outline, .btn-sage { padding: 14px 24px; width: 100%; text-align: center; }
}
