/* =========================================================
   Marburg.Club — premium landing page
   ========================================================= */

:root{
  /* palette */
  --espresso:   #17110b;
  --espresso-2: #1f1810;
  --espresso-3: #0f0b07;
  --cream:      #f5ede1;
  --cream-2:    #efe5d6;
  --cream-3:    #faf5ec;
  --green:      #2c8a72;
  --green-d:    #246e5b;
  --green-l:    #3fa98d;
  --gold:       #d6b486;
  --tan:        #c9a87a;
  --ink:        #241c12;
  --ink-soft:   #5f5345;
  --ink-mute:   #8a7c68;
  --paper:      #ffffff;
  --light:      #f6efe3;
  --light-mute: #cbbfa9;
  --light-dim:  #8c8069;

  --maxw: 1200px;
  --radius: 22px;
  --radius-sm: 13px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --shadow-card: 0 30px 70px -38px rgba(50,32,10,.55);
  --shadow-soft: 0 18px 44px -24px rgba(0,0,0,.5);
  --font: 'Archivo', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --serif: 'Newsreader', Georgia, serif;
  --font-display: 'Bricolage Grotesque', 'Archivo', sans-serif; /* section titles */
  --font-hero: 'Fraunces', 'Newsreader', Georgia, serif;         /* hero display */

  /* Spacing — 8pt grid (Material Design aligned). See design-system.md §4 */
  --space-3xs: 4px;   /* optical nudges only */
  --space-2xs: 8px;   /* tight internal gaps */
  --space-xs:  12px;  /* label→title, list-row gaps */
  --space-sm:  16px;  /* heading→lead, icon→title */
  --space-md:  24px;  /* card padding compact, grid gap */
  --space-lg:  32px;  /* card padding comfortable, text→cta */
  --space-xl:  48px;  /* heading block → content grid */
  --space-2xl: 64px;  /* large intra-section blocks */
  --space-3xl: 96px;  /* section padding ceiling */
  /* Semantic rhythm */
  --section-pad: clamp(56px, 8vw, 96px);   /* vertical padding per section */
  --head-gap:    clamp(32px, 4vw, 48px);   /* section header block → content */
}

*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:auto; -webkit-text-size-adjust:100%; }
body{
  font-family:var(--font);
  background:var(--espresso);
  color:var(--light);
  line-height:1.5;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
a{ color:inherit; text-decoration:none; }
img{ display:block; max-width:100%; }
::selection{ background:var(--green); color:#fff; }
button{ font-family:inherit; cursor:pointer; border:0; background:none; color:inherit; }

.container{ width:100%; max-width:var(--maxw); margin:0 auto; padding-inline:clamp(20px,4vw,32px); }
.serif{ font-family:var(--serif); font-style:italic; font-weight:500; }
.serif--green{ color:var(--green); }

/* ---------- typography helpers ---------- */
.h2{
  font-family:var(--font-display);
  font-size:clamp(32px,5vw,54px);
  line-height:1.02;
  font-weight:700;
  letter-spacing:-.028em;
  text-transform:uppercase;
  color:var(--ink);
  text-wrap:balance;
}
.h2 .serif{ text-transform:none; font-weight:500; letter-spacing:-.01em; }
.h2--light{ color:var(--light); }
.lead{ font-size:clamp(17px,2.2vw,20px); line-height:1.6; color:var(--ink-soft); margin-top:var(--space-sm); max-width:46ch; }
.lead--light{ color:var(--light-mute); }
.lead--center{ margin-left:auto; margin-right:auto; text-align:center; }

.eyebrow{
  display:flex; align-items:center; gap:13px;
  font-size:13px; font-weight:700; letter-spacing:.2em; text-transform:uppercase;
  color:#a87f3f; margin-bottom:var(--space-sm);
}
.eyebrow--light{ color:var(--gold); }
.eyebrow--center{ justify-content:center; text-align:center; }
.eyebrow__line{ width:38px; height:1.5px; background:currentColor; opacity:.6; flex:none; }

/* ---------- buttons ---------- */
.btn{
  --bg:var(--green); --fg:#fff;
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  background:var(--bg); color:var(--fg);
  font-size:15px; font-weight:600; letter-spacing:.01em;
  padding:13px 24px; border-radius:var(--radius-sm);
  transition:transform .4s var(--ease-out), background .25s, box-shadow .35s, border-color .25s;
  will-change:transform;
}
.btn--primary{ box-shadow:0 16px 34px -16px rgba(44,138,114,.9); }
.btn--primary:hover{ background:var(--green-d); transform:translateY(-2px); box-shadow:0 22px 44px -16px rgba(44,138,114,.95); }
.btn--ghost{
  background:rgba(245,237,225,.06); color:var(--light);
  border:1px solid rgba(245,237,225,.26); backdrop-filter:blur(6px);
  box-shadow:none;
}
.section--cream .btn--ghost, .section--cream-alt .btn--ghost{
  background:transparent; color:var(--ink); border-color:rgba(36,28,18,.25);
}
.section--cream .btn--ghost:hover{ background:rgba(36,28,18,.06); transform:translateY(-2px); }
.btn--ghost:hover{ background:rgba(245,237,225,.16); transform:translateY(-2px); }
.btn--lg{ font-size:16.5px; padding:16px 30px; }

.chip{
  list-style:none; border:1px solid rgba(245,237,225,.24); border-radius:999px;
  padding:8px 16px; font-size:14px; color:var(--light-mute);
}

/* ---------- scroll progress ---------- */
.scroll-progress{
  position:fixed; top:0; left:0; height:3px; width:0%;
  background:linear-gradient(90deg,var(--green),var(--gold));
  z-index:200; transition:width .1s linear;
}

/* =========================================================
   NAV
   ========================================================= */
.nav-wrap{ position:sticky; top:16px; z-index:100; padding-inline:clamp(14px,4vw,28px); }
.nav{
  display:flex; align-items:center; justify-content:space-between; gap:20px;
  max-width:1260px; margin:0 auto;
  background:rgba(23,17,11,.42);
  backdrop-filter:blur(34px) saturate(1.5); -webkit-backdrop-filter:blur(34px) saturate(1.5);
  border:1px solid rgba(245,237,225,.12);
  border-radius:18px; padding:11px 14px 11px 16px;
  box-shadow:0 22px 50px -30px rgba(0,0,0,.7), inset 0 1px 0 rgba(245,237,225,.06);
  transition:background .3s, box-shadow .3s, border-color .3s;
}
.nav.is-scrolled{ background:rgba(17,12,7,.66); border-color:rgba(245,237,225,.16); }
.nav__brand{ display:flex; align-items:center; gap:11px; }
.nav__logo{ width:40px; height:40px; border-radius:11px; box-shadow:0 6px 14px -6px rgba(0,0,0,.6); }
.nav__name{ line-height:1.15; }
.nav__name-main{ display:block; font-size:16px; font-weight:700; letter-spacing:-.01em; }
.nav__name-sub{ display:block; font-size:11px; color:var(--light-dim); }
.nav__mid{ display:flex; align-items:center; gap:26px; font-size:14px; font-weight:600; margin-right:auto; margin-left:clamp(14px,2.2vw,34px); }
.nav__link{ color:var(--light-mute); transition:color .2s; position:relative; }
.nav__link:hover{ color:var(--light); }
.nav__link.is-active{ color:var(--light); }
.nav__right{ display:flex; align-items:center; gap:12px; }
.lang{ display:flex; border:1px solid rgba(245,237,225,.18); border-radius:9px; overflow:hidden; font-size:12px; font-weight:700; }
.lang__btn{ display:inline-flex; align-items:center; min-height:32px; padding:7px 12px; color:var(--light-dim); transition:background .2s,color .2s; }
.lang__btn.is-active{ background:rgba(245,237,225,.14); color:var(--light); }
.nav__cta{ padding:10px 18px; }
.nav__mid-cta{ display:none; }
.nav__burger{ display:none; position:relative; width:42px; height:42px; flex:0 0 auto; border:1px solid rgba(245,237,225,.16); background:rgba(245,237,225,.05); border-radius:11px; cursor:pointer; color:var(--light); padding:0; -webkit-tap-highlight-color:transparent; }
.nav__burger i{ position:absolute; left:11px; right:11px; height:2px; background:currentColor; border-radius:2px; transition:transform .25s ease, opacity .2s ease; }
.nav__burger i:nth-child(1){ top:14px; }
.nav__burger i:nth-child(2){ top:20px; }
.nav__burger i:nth-child(3){ top:26px; }
.nav.is-menu-open .nav__burger i:nth-child(1){ transform:translateY(6px) rotate(45deg); }
.nav.is-menu-open .nav__burger i:nth-child(2){ opacity:0; }
.nav.is-menu-open .nav__burger i:nth-child(3){ transform:translateY(-6px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position:relative; min-height:100svh; margin-top:-72px;
  display:flex; align-items:center; overflow:hidden;
  background:
    radial-gradient(120% 90% at 78% 18%,rgba(120,82,40,.5) 0%,rgba(40,26,14,0) 42%),
    radial-gradient(70% 60% at 18% 6%,rgba(214,168,99,.28) 0%,rgba(40,26,14,0) 40%),
    radial-gradient(100% 100% at 50% 120%,#0d0905 0%,#1c130b 55%,#241810 100%);
}
.hero__media{ position:absolute; inset:0; overflow:hidden; }
.hero__img{
  position:absolute; left:0; right:0; bottom:0; top:auto;
  width:100%; height:100%; object-fit:cover; object-position:center center;
  transform-origin:50% 96%;
  will-change:transform;
}
.hero__darken{
  position:absolute; inset:0; z-index:4; pointer-events:none;
  background:#0d0905; opacity:0;
}
.hero__scrim{
  position:absolute; inset:0; pointer-events:none;
  background:
    linear-gradient(100deg,rgba(13,9,5,.93) 0%,rgba(13,9,5,.7) 36%,rgba(13,9,5,.18) 64%,rgba(13,9,5,.5) 100%),
    linear-gradient(to top,rgba(13,9,5,.92) 0%,rgba(13,9,5,0) 30%);
}
.hero__inner{ position:relative; z-index:5; padding-top:120px; padding-bottom:90px; }
.hero__content{ max-width:760px; }
.hero__title{
  font-family:var(--font-hero);
  font-size:clamp(44px,8.6vw,92px); line-height:.98; font-weight:600;
  letter-spacing:-.015em; text-transform:uppercase; margin:0;
  text-shadow:0 2px 36px rgba(0,0,0,.45); text-wrap:balance;
}
.hero__lead{ font-size:clamp(18px,2.4vw,21px); line-height:1.55; color:#e6dcca; margin:20px 0 0; max-width:540px; }
.hero__lead .serif{ color:#f1e6d4; }
.hero__actions{ display:flex; gap:14px; margin-top:28px; flex-wrap:wrap; }
.hero__chips{ display:flex; gap:10px; margin-top:24px; flex-wrap:wrap; }
.hero__cue{
  position:absolute; left:50%; bottom:26px; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:8px; z-index:5;
  font-size:11px; letter-spacing:.22em; text-transform:uppercase; color:rgba(245,237,225,.55);
}
.hero__cue-dot{ width:24px; height:38px; border:1.5px solid rgba(245,237,225,.4); border-radius:14px; position:relative; }
.hero__cue-dot::after{ content:""; position:absolute; left:50%; top:7px; width:4px; height:7px; border-radius:3px; background:var(--gold); transform:translateX(-50%); animation:cue 1.8s var(--ease) infinite; }
@keyframes cue{ 0%{opacity:0;transform:translate(-50%,0)} 30%{opacity:1} 70%{opacity:1;transform:translate(-50%,10px)} 100%{opacity:0;transform:translate(-50%,14px)} }

/* ---- Café arrival card (fades in as hero darkens) ---- */
.hero__cafe-reveal{
  position:absolute; inset:0; z-index:6; pointer-events:none;
  display:flex; align-items:center; justify-content:center;
  opacity:0;
}
.hero__cafe-card{ text-align:center; }
.hero__cafe-eyebrow{
  display:block; font-size:12px; font-weight:700; letter-spacing:.22em;
  text-transform:uppercase; color:var(--gold); opacity:.85;
  margin-bottom:18px;
}
.hero__cafe-name{
  font-size:clamp(38px,6.5vw,80px); font-weight:800;
  letter-spacing:-.025em; text-transform:uppercase;
  color:var(--light); line-height:1.0;
  text-shadow:0 4px 48px rgba(0,0,0,.6);
}
.hero__cafe-addr{
  font-size:clamp(14px,1.6vw,18px); color:var(--light-mute);
  margin-top:14px; font-weight:500; letter-spacing:.04em;
}

/* =========================================================
   shared section paddings
   ========================================================= */
.section--cream{ background:var(--cream); color:var(--ink); }
.section--cream-alt{ background:var(--cream-2); color:var(--ink); }
.section--dark{ background:var(--espresso); color:var(--light); }
.offer,.discover,.faq,.cafe,.teaser,.claim{ padding-block:var(--section-pad); }

/* =========================================================
   OFFER
   ========================================================= */
.offer{ background:linear-gradient(180deg,#f7f0e6,var(--cream)); }
.offer__grid{ display:grid; grid-template-columns:1.05fr .95fr; gap:clamp(40px,6vw,72px); align-items:center; }
.ticklist{ list-style:none; display:flex; flex-direction:column; gap:18px; margin-top:32px; }
.ticklist li{ display:flex; gap:14px; align-items:flex-start; }
.ticklist .tick{ width:30px; height:30px; border-radius:9px; background:#e2efe9; flex:none; margin-top:2px; position:relative; }
.ticklist .tick::after{ content:""; position:absolute; left:9px; top:11px; width:9px; height:5px; border-left:2px solid var(--green); border-bottom:2px solid var(--green); transform:rotate(-45deg); }
.ticklist strong{ display:block; font-size:17px; font-weight:700; color:var(--ink); }
.ticklist span{ font-size:15px; color:var(--ink-soft); }

.offer__card-wrap{ position:relative; }
.offer__card{
  position:relative; z-index:2; background:var(--paper); border-radius:24px; padding:16px;
  box-shadow:var(--shadow-card); max-width:440px; margin-inline:auto;
}
.offer__card-media{ position:relative; border-radius:16px; overflow:hidden; height:320px; }
.offer__card-media img,.offer__card-video{ width:100%; height:100%; object-fit:cover; display:block; }
.offer__stamp{
  position:absolute; top:14px; left:14px; background:rgba(18,13,8,.78); color:var(--gold);
  font-size:11px; font-weight:700; letter-spacing:.14em; text-transform:uppercase;
  padding:7px 12px; border-radius:9px; backdrop-filter:blur(4px);
}
.offer__card-body{ text-align:center; padding:22px 12px 10px; }
.offer__price{ font-size:clamp(34px,4.4vw,46px); font-weight:800; letter-spacing:-.02em; color:var(--green); text-transform:uppercase; }
.offer__meta{ font-size:15px; color:var(--ink-soft); margin-top:6px; }
.offer__glow{ position:absolute; inset:-8% -6% -12% -6%; z-index:1; background:radial-gradient(60% 60% at 50% 40%,rgba(44,138,114,.28),transparent 70%); filter:blur(20px); }
.float{ animation:floaty 8s ease-in-out infinite; }
@keyframes floaty{ 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

/* =========================================================
   BREW — sticky phone + step-based screen transitions
   ========================================================= */
.brew{
  position:relative;
  background:var(--cream);
  color:var(--ink);
  padding-bottom: clamp(24px,3vw,44px);
}
.brew__head{ text-align:center; max-width:720px; margin-inline:auto; padding-top:clamp(32px,4vw,56px); padding-bottom:clamp(8px,1.5vw,16px); }
.brew__head .eyebrow{ justify-content:center; margin-bottom:10px; }
.brew__sub{ font-size:17px; color:var(--ink-soft); margin-top:7px; font-weight:500; }

/* Scene: total scroll distance — reduced for fast step transitions */
.brew__scene{ height:130vh; position:relative; }

/* Sticky inner: stays at top while scene scrolls */
.brew__pin{
  position:sticky; top:7svh; height:86svh;
  display:flex; flex-direction:row; align-items:center; justify-content:center;
  gap:clamp(40px,6vw,100px);
  padding-inline:var(--side);
  overflow:hidden;
}

/* ---- Central phone device ---- */
.brew__device-wrap{ position:relative; flex-shrink:0; }

.brew__device{
  width:clamp(190px,14.5vw,232px);
  aspect-ratio:9/19.5;
  border-radius:clamp(30px,2.6vw,40px);
  background:linear-gradient(165deg,#0e1d30 0%,#07101c 100%);
  border:1.5px solid rgba(100,140,200,.18);
  box-shadow:
    0 0 0 8px rgba(14,29,48,.55),
    0 50px 100px -22px rgba(0,0,0,.9),
    inset 0 1px 0 rgba(255,255,255,.06);
  position:relative; overflow:hidden;
}

.brew__device-island{
  position:absolute; top:10px; left:50%; transform:translateX(-50%);
  width:clamp(36px,3vw,44px); height:clamp(10px,.9vw,13px);
  background:rgba(0,0,0,.9); border-radius:8px; z-index:10; pointer-events:none;
}
.brew__device-bar{
  position:absolute; bottom:9px; left:50%; transform:translateX(-50%);
  width:clamp(30px,2.4vw,38px); height:3px;
  background:rgba(245,237,225,.2); border-radius:2px; z-index:10; pointer-events:none;
}

/* Screen stack */
.brew__screens{ position:absolute; inset:0; }

.brew__screen{
  position:absolute; inset:0;
  opacity:0;
  transition:opacity .45s cubic-bezier(.4,0,.2,1);
  display:flex; flex-direction:column; align-items:center;
  padding:clamp(26px,2.5vh,36px) clamp(12px,1.2vw,18px) clamp(18px,2vh,26px);
  pointer-events:none;
}
.brew__screen.is-active{ opacity:1; pointer-events:auto; }

/* Phone ambient glow — soft on cream background */
.brew__device-glow{
  position:absolute; inset:-25% -20%;
  background:radial-gradient(55% 55% at 50% 50%,rgba(44,138,114,.14),transparent 70%);
  filter:blur(32px); z-index:-1; pointer-events:none;
}

/* ---- Step cards (right column) ---- */
.brew__steps{
  list-style:none;
  display:flex; flex-direction:column;
  gap:clamp(3px,.5vh,7px);
  max-width:380px; width:100%;
}

.brew-step{
  display:flex; align-items:flex-start;
  gap:clamp(10px,1vw,16px); padding:clamp(10px,1vh,14px) clamp(14px,1.3vw,18px);
  border-radius:16px;
  border:1.5px solid rgba(255,255,255,.58);
  background:rgba(255,255,255,.38);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  opacity:.65;
  transition:opacity .35s, border-color .35s, background .35s, box-shadow .35s, transform .35s;
  cursor:pointer;
  transform:translateX(6px);
  user-select:none;
}
.brew-step.is-active{
  opacity:1;
  transform:translateX(0);
  background:transparent;
  border-color:var(--green);
  box-shadow:0 0 0 1px rgba(44,138,114,.14), 0 6px 32px -8px rgba(44,138,114,.32), inset 3px 0 0 var(--green);
}

.brew-step__icon{
  width:clamp(36px,3vw,44px); height:clamp(36px,3vw,44px); flex-shrink:0;
  border-radius:12px;
  background:rgba(44,138,114,.1); border:1px solid rgba(63,169,141,.2);
  display:flex; align-items:center; justify-content:center;
  color:rgba(63,169,141,.55);
  transition:background .4s, border-color .4s, color .4s, box-shadow .4s;
}
.brew-step.is-active .brew-step__icon{
  background:rgba(44,138,114,.22);
  border-color:rgba(63,169,141,.5);
  color:var(--green-l);
  box-shadow:0 0 24px -6px rgba(44,138,114,.45);
}

.brew-step__body{ min-width:0; }
.brew-step__no{
  display:block; font-size:10.5px; font-weight:800; letter-spacing:.13em;
  color:var(--ink-mute); margin-bottom:3px;
  transition:color .4s;
}
.brew-step.is-active .brew-step__no{ color:var(--green); }

.brew-step__title{
  font-size:clamp(14px,1.4vw,17px); font-weight:700;
  color:var(--ink); line-height:1.25; letter-spacing:-.01em;
}
.brew-step__desc{
  font-size:clamp(12px,1.1vw,14px); color:var(--ink-soft);
  margin-top:4px; line-height:1.5;
}

/* =========================================================
   APP SCREEN CONTENT (bscr)
   ========================================================= */
.bscr{
  width:100%; flex:1; display:flex; flex-direction:column;
  align-items:center; gap:clamp(6px,.8vh,10px);
}

/* ---- Screen 0: Download ---- */
.bscr--dl{ justify-content:center; }
.bscr__icon-wrap{ margin-bottom:2px; }

/* ---- Screen: Visit a Partner Café ---- */
.bscr--visit{ justify-content:center; text-align:center; gap:var(--space-2xs); }
.bscr__pin{
  width:52px; height:52px; border-radius:50%;
  background:rgba(44,138,114,.18); border:1px solid rgba(63,169,141,.4);
  display:flex; align-items:center; justify-content:center;
  color:var(--green-l); margin-bottom:var(--space-3xs);
  box-shadow:0 0 28px -8px rgba(44,138,114,.5);
}
.bscr__live-dot{
  display:inline-block; width:6px; height:6px; border-radius:50%;
  background:var(--green-l); margin-right:5px; vertical-align:middle;
}
.bscr__name{
  font-size:clamp(13px,1.1vw,15px); font-weight:600; color:var(--light);
  letter-spacing:-.01em;
}
.bscr__sub-tag{
  font-size:10px; color:rgba(245,237,225,.45); letter-spacing:.06em;
}
.bscr__rule{ width:60%; height:1px; background:rgba(245,237,225,.1); }
.bscr__logo-wrap{ margin-bottom:4px; }
.bscr__logo{ width:56px; height:56px; object-fit:contain; display:block; }

.bscr__stores{ display:flex; flex-direction:column; gap:6px; width:100%; align-items:stretch; }
.bscr__badge{
  display:flex; align-items:center; justify-content:center; gap:9px;
  background:rgba(245,237,225,.05); border:1px solid rgba(245,237,225,.22);
  color:var(--light); border-radius:11px; padding:8px 14px;
}
.bscr__badge-ic{ flex:none; opacity:.9; }
.bscr__badge-txt{ display:flex; flex-direction:column; line-height:1.15; text-align:left; }
.bscr__badge-txt small{ font-size:7px; letter-spacing:.03em; color:var(--light-dim); white-space:nowrap; }
.bscr__badge-txt b{ font-size:12px; font-weight:700; letter-spacing:-.01em; white-space:nowrap; }
.bscr__stars{ font-size:10px; color:rgba(214,180,134,.7); letter-spacing:.04em; }

/* ---- Screen 1: Sign Up ---- */
.bscr--signup{ justify-content:center; }
.bscr__label{
  font-size:9.5px; font-weight:700; letter-spacing:.12em; text-transform:uppercase;
  color:rgba(63,169,141,.7);
}
.bscr__heading{
  font-size:clamp(15px,1.3vw,18px); font-weight:800; color:var(--light);
  letter-spacing:-.01em; margin-bottom:4px;
}
.bscr__field{
  width:88%; background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1); border-radius:8px;
  padding:7px 10px; font-size:10px; color:rgba(245,237,225,.5);
}
.bscr__field--pw{ color:rgba(245,237,225,.3); }
.bscr__cta-btn{
  width:88%; background:var(--green); color:#fff;
  border-radius:8px; padding:8px 10px;
  font-size:11px; font-weight:700; text-align:center;
}
.bscr__micro{
  font-size:9px; color:rgba(245,237,225,.3); letter-spacing:.04em;
}

/* ---- Screen 2: QR Scan ---- */
.bscr--qr{ justify-content:center; }
.bscr__qr-frame{
  width:clamp(122px,11vw,150px); aspect-ratio:1;
  position:relative; display:flex; align-items:center; justify-content:center;
  margin-block:6px;
}
.bscr__qr-img{
  width:88%; height:88%; object-fit:contain; display:block;
  border-radius:6px; background:#fff; padding:3px;
}
.bscr__qrc{
  position:absolute; width:16px; height:16px;
  font-style:normal; border-color:rgba(63,169,141,.8); border-style:solid;
}
.bscr__qrc--tl{ top:0; left:0; border-width:2px 0 0 2px; border-radius:2px 0 0 0; }
.bscr__qrc--tr{ top:0; right:0; border-width:2px 2px 0 0; border-radius:0 2px 0 0; }
.bscr__qrc--bl{ bottom:0; left:0; border-width:0 0 2px 2px; border-radius:0 0 0 2px; }
.bscr__qrc--br{ bottom:0; right:0; border-width:0 2px 2px 0; border-radius:0 0 2px 0; }
.bscr__qr-dots{
  width:60%; height:60%; display:grid; grid-template-columns:repeat(5,1fr);
  gap:3px;
}
.bscr__qr-dots::before{
  content:'';
  width:100%; height:100%;
  background:
    radial-gradient(circle at 20% 20%,rgba(245,237,225,.25) 2px,transparent 2px),
    radial-gradient(circle at 50% 20%,rgba(245,237,225,.2) 2px,transparent 2px),
    radial-gradient(circle at 80% 20%,rgba(245,237,225,.25) 2px,transparent 2px),
    radial-gradient(circle at 20% 50%,rgba(245,237,225,.2) 2px,transparent 2px),
    radial-gradient(circle at 50% 50%,rgba(245,237,225,.3) 2px,transparent 2px),
    radial-gradient(circle at 80% 50%,rgba(245,237,225,.2) 2px,transparent 2px),
    radial-gradient(circle at 20% 80%,rgba(245,237,225,.25) 2px,transparent 2px),
    radial-gradient(circle at 50% 80%,rgba(245,237,225,.15) 2px,transparent 2px),
    radial-gradient(circle at 80% 80%,rgba(245,237,225,.25) 2px,transparent 2px);
  background-size:100% 100%;
}
.bscr__qr-line{
  position:absolute; left:6%; right:6%; height:1.5px;
  background:linear-gradient(90deg,transparent,rgba(63,169,141,.9),transparent);
  animation:qrScan 2s ease-in-out infinite;
}
@keyframes qrScan{
  0%,100%{ top:10%; opacity:.6; }
  50%{ top:88%; opacity:.9; }
}

/* ---- Screen 3: Stamp Card ---- */
.bscr--stamp{ justify-content:center; }
.bscr__stamps{ display:flex; gap:clamp(5px,.5vw,8px); margin-block:6px; }
.bscr__stamp{
  width:clamp(22px,1.9vw,28px); height:clamp(22px,1.9vw,28px);
  border-radius:50%; border:1.5px solid rgba(245,237,225,.2);
  background:rgba(255,255,255,.04);
  display:flex; align-items:center; justify-content:center;
  color:transparent;
  transition:all .4s;
}
.bscr__stamp--done{
  background:rgba(44,138,114,.35); border-color:rgba(63,169,141,.55);
  color:var(--green-l);
}
.bscr__stamp--active{
  background:rgba(44,138,114,.55); border-color:rgba(63,169,141,.9);
  color:#fff;
  box-shadow:0 0 14px -3px rgba(44,138,114,.7);
  animation:stampPulse 2s ease-in-out infinite;
}
@keyframes stampPulse{
  0%,100%{ box-shadow:0 0 14px -3px rgba(44,138,114,.7); }
  50%{ box-shadow:0 0 24px -3px rgba(44,138,114,.9); }
}
.bscr__prog{
  width:88%; height:4px; background:rgba(255,255,255,.08);
  border-radius:3px; overflow:hidden;
}
.bscr__prog-fill{ height:100%; background:var(--green); border-radius:3px; }

/* ---- Screen 4: Reward ---- */
.bscr--reward{
  position:relative; padding:0; overflow:hidden;
  background:radial-gradient(125% 90% at 50% 28%, #173352 0%, #0d1d31 55%, #07101c 100%);
}
.bscr__reward-inner{
  position:relative; z-index:2;
  width:100%; height:100%;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:8px;
  padding:20px 14px;
}
.bscr__reward-check{
  width:44px; height:44px; border-radius:50%;
  background:rgba(44,138,114,.3); border:1.5px solid rgba(63,169,141,.7);
  display:flex; align-items:center; justify-content:center;
  color:var(--green-l);
  box-shadow:0 0 28px -6px rgba(44,138,114,.6);
}
.bscr__reward-enjoy{
  font-size:12px; color:rgba(245,237,225,.65); letter-spacing:.06em;
}
.bscr__reward-title{
  font-size:clamp(14px,1.3vw,17px); font-weight:800; color:#fff;
  letter-spacing:-.01em; text-align:center; line-height:1.2;
}

/* ---- Brew: mobile ---- */
@media(max-width:768px){
  .brew__pin{
    flex-direction:column; gap:24px;
    justify-content:center; align-items:center;
    padding-block:clamp(28px,4vh,48px);
  }
  .brew__device{ width:140px; }
  .brew__steps{ max-width:100%; }
  .brew-step{ padding:12px 14px; }
  .brew-step__title{ font-size:14px; }
  .brew-step__desc{ font-size:12px; }
  .brew__scene{ height:220vh; }
}

/* =========================================================
   SECTION DIVIDER
   ========================================================= */
.section-divider{
  background:var(--cream); padding:clamp(12px,1.6vw,20px) 0;
}
.section-divider__inner{
  display:flex; align-items:center; justify-content:center; gap:18px;
  flex-wrap:wrap; text-align:center;
}
.section-divider__rule{
  flex:1; max-width:100px; height:1px;
  background:linear-gradient(90deg,transparent,rgba(36,28,18,.18),transparent);
}
.section-divider__label{
  font-size:12px; font-weight:700; letter-spacing:.16em; text-transform:uppercase;
  color:var(--ink-soft);
}
.section-divider__arrow{
  font-size:16px; color:var(--green); line-height:1;
  animation:arrowBounce 2s ease-in-out infinite;
}
@keyframes arrowBounce{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(4px); }
}
.section-divider__sub{
  font-size:11px; color:rgba(36,28,18,.38); letter-spacing:.1em;
  text-transform:uppercase; font-weight:600;
}

/* =========================================================
   CAFÉ — extras: partner badge, rating, directions
   ========================================================= */
.cafe__partner-badge{
  display:inline-flex; align-items:center; gap:7px;
  background:linear-gradient(135deg,rgba(214,168,99,.15),rgba(214,168,99,.08));
  border:1px solid rgba(214,168,99,.35); border-radius:999px;
  padding:6px 14px; font-size:11px; font-weight:700; letter-spacing:.1em;
  text-transform:uppercase; color:#a87f3f; margin-bottom:16px;
}
.cafe__eyebrow{ color:#a87f3f; }
.cafe__rating{
  display:flex; align-items:center; gap:8px; margin-top:20px; flex-wrap:wrap;
}
.cafe__stars{ color:#f5b942; font-size:15px; letter-spacing:2px; }
.cafe__rating strong{ font-size:17px; font-weight:800; color:var(--ink); }
.cafe__reviews{ font-size:14px; color:var(--ink-soft); }
.cafe__open{
  display:flex; align-items:center; gap:6px;
  font-size:13px; font-weight:600; color:#2d7a5a;
  background:rgba(44,138,114,.1); border:1px solid rgba(44,138,114,.2);
  padding:4px 10px; border-radius:999px;
}
.cafe__open-dot{
  width:7px; height:7px; border-radius:50%; background:#2d7a5a;
  box-shadow:0 0 6px rgba(44,138,114,.5);
  animation:openPulse 2s ease-in-out infinite;
}
@keyframes openPulse{
  0%,100%{ opacity:1; } 50%{ opacity:.45; }
}
.cafe__meta li{ display:flex; align-items:center; gap:14px; font-size:15px; color:var(--ink-soft); }
.cafe__ic{
  width:34px; height:34px; border-radius:10px;
  border:1px solid rgba(36,28,18,.14); background:rgba(36,28,18,.04);
  display:flex; align-items:center; justify-content:center;
  color:var(--green); flex:none;
}
.cafe__dir-btn{
  display:inline-flex; align-items:center; gap:8px;
  font-size:15px; padding:13px 22px;
}
.cafe__dir-btn svg{ transition:transform .3s var(--ease); }
.cafe__dir-btn:hover svg{ transform:translateY(-2px); }

/* =========================================================
   TEASER — animated roadmap
   ========================================================= */
.teaser__h2{ max-width:700px; margin-inline:auto; }
.teaser__city{ position:relative; display:inline-block; }
.teaser__city-line{
  position:absolute; bottom:-4px; left:0;
  height:3px; width:0; background:var(--green); border-radius:2px;
  transition:width 1.1s cubic-bezier(.4,0,.2,1);
}
.teaser__inner.is-in .teaser__city-line{ width:100%; }
.teaser__lead{ max-width:560px; margin-inline:auto; }

.teaser__road{
  display:flex; flex-direction:column; gap:0;
  max-width:560px; margin:clamp(36px,4vw,52px) auto 0;
  position:relative;
}
.teaser__road::before{
  content:''; position:absolute; left:11px; top:14px; bottom:14px;
  width:1.5px; background:linear-gradient(to bottom,var(--green),rgba(36,28,18,.15));
}
.teaser__node{
  display:flex; gap:20px; align-items:flex-start;
  padding:0 0 clamp(20px,2.5vw,30px) 0;
}
.teaser__node:last-child{ padding-bottom:0; }
.teaser__dot{
  width:24px; height:24px; flex-shrink:0; border-radius:50%;
  background:var(--cream); border:2px solid rgba(36,28,18,.2);
  position:relative; z-index:1; margin-top:1px;
}
.teaser__node--live .teaser__dot{
  background:var(--green); border-color:var(--green);
  box-shadow:0 0 14px -3px rgba(44,138,114,.55);
}
.teaser__node-body{ flex:1; min-width:0; padding-top:1px; }
.teaser__node-title{
  font-size:clamp(15px,1.5vw,17px); font-weight:700; color:var(--ink);
  display:flex; align-items:center; gap:10px; flex-wrap:wrap;
}
.teaser__node-sub{ font-size:13.5px; color:var(--ink-soft); margin-top:4px; }
.teaser__badge{
  font-size:10px; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  padding:3px 9px; border-radius:999px;
  border:1.5px solid rgba(36,28,18,.18); color:var(--ink-soft);
}
.teaser__badge--live{
  background:rgba(44,138,114,.12); border-color:rgba(44,138,114,.35); color:var(--green);
}

/* Cycling café types */
.teaser__cycle-wrap{
  position:relative; height:22px; overflow:hidden; margin-top:5px;
}
.teaser__cycle{ position:relative; }
.teaser__cycle span{
  display:block; font-size:14px; color:var(--ink-soft);
  position:absolute; top:0; left:0;
  opacity:0; transform:translateY(8px);
  transition:opacity .5s, transform .5s;
  white-space:nowrap;
}
.teaser__cycle span.is-active{
  opacity:1; transform:translateY(0);
  position:relative;
}

/* =========================================================
   CAFÉ
   ========================================================= */
.cafe{
  position:relative;
  background:
    linear-gradient(180deg, rgba(15,11,7,.86) 0%, rgba(15,11,7,.9) 55%, rgba(15,11,7,.96) 100%),
    var(--espresso) url("../assets/students/img/hero-marburg.jpg") center top / cover no-repeat;
  color:var(--light);
  padding-block:clamp(40px,5vw,68px) 0;
}
.cafe .eyebrow{ color:var(--gold); }
.cafe__meta li{ color:var(--light-mute); }
.cafe__ic{ border-color:rgba(36,28,18,.18); color:var(--green); }
.cafe__top{
  display:grid; grid-template-columns:1.2fr 0.8fr;
  gap:clamp(36px,5vw,64px); align-items:end;
  padding-bottom:clamp(48px,6vw,72px);
}
.cafe__aside{ display:flex; flex-direction:column; gap:22px; }
.cafe__meta{ list-style:none; display:flex; flex-direction:column; gap:13px; }
.cafe__meta li{ display:flex; align-items:center; gap:14px; font-size:16px; color:#e6dcca; }
.cafe__ic{ width:34px; height:34px; border-radius:10px; border:1px solid rgba(245,237,225,.2); display:flex; align-items:center; justify-content:center; color:var(--tan); flex:none; }

/* =========================================================
   VENUE CAROUSEL  (title left · drag/arrow slider right)
   ========================================================= */
.cafe__eyebrow{ margin-top:10px; }

/* Outer 2-column wrapper — normal document flow, no sticky */
.vcards-wrap{
  display:grid;
  grid-template-columns:1fr 1.15fr;
  gap:clamp(28px,4vw,64px);
  align-items:center;
  padding-block:clamp(48px,7vw,88px);
}

/* Left column */
.vcards-header{
  display:flex; flex-direction:column; gap:var(--space-sm);
}
.vcards-header .h2{
  line-height:1.04; letter-spacing:-.022em;
}
.vcards-header .lead{
  font-size:clamp(15px,1.5vw,17px);
  color:var(--ink-soft); line-height:1.65; max-width:38ch;
}

/* Counter */
.vcards-hud{
  display:flex; align-items:baseline; gap:4px;
  margin-top:6px;
  font-size:12px; font-weight:700; color:rgba(36,28,18,.38);
  letter-spacing:.05em; user-select:none;
}
.vcards-hud-cur{
  font-size:clamp(28px,3vw,38px); font-weight:900;
  color:var(--green); line-height:1;
}
.vcards-hud-sep{ font-size:15px; margin-inline:3px; }
.vcards-hud-tot{ font-size:15px; font-weight:800; color:var(--ink-soft); }

/* Right column — stage holds slider + outside arrows */
.vcards-stage{ position:relative; }

/* Right column — slider */
.vcards-slider{
  position:relative;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 24px 64px -16px rgba(0,0,0,.22), 0 0 0 1px rgba(36,28,18,.07);
  touch-action:pan-y;
  user-select:none; -webkit-user-select:none;
  cursor:grab;
}
.vcards-slider:active{ cursor:grabbing; }

/* Sliding track */
.vcards-track{
  display:flex;
  transition:transform .46s cubic-bezier(.4,0,.2,1);
  will-change:transform;
}
.vcards-track.is-dragging{ transition:none; }

/* Each venue card is one slide */
.vcrd{
  flex:0 0 100%; min-width:100%;
  display:grid; grid-template-columns:1fr 1fr;
  border-radius:0; overflow:hidden;
  max-height:min(480px,62dvh);
}

/* Photo */
.vcrd__photo{
  position:relative; overflow:hidden;
  aspect-ratio:3/4; min-height:unset;
}
.vcrd__photo img{
  position:absolute; inset:0;
  width:100%; height:100%; object-fit:cover; display:block;
  pointer-events:none;
  transition:transform .5s var(--ease);
}
.vcrd__photo:hover img{ transform:scale(1.04); }

/* Info panel */
.vcrd__panel{
  background:#fff;
  padding:clamp(18px,2.2vw,28px);
  display:flex; flex-direction:column; gap:8px;
  overflow-y:auto;
  pointer-events:auto;
}

/* Tags */
.vcrd__tags{ display:flex; gap:6px; flex-wrap:wrap; }
.vcrd__tag{
  display:inline-flex; align-items:center; gap:5px;
  font-size:10px; font-weight:600; letter-spacing:.08em; text-transform:uppercase;
  padding:4px 10px; border-radius:999px;
  background:rgba(36,28,18,.07); color:var(--ink-soft);
  border:1px solid rgba(36,28,18,.1);
}
.vcrd__tag--live{
  background:rgba(44,138,114,.12); color:#1a6645;
  border-color:rgba(44,138,114,.28);
}
.vcrd__tag--partner{
  background:rgba(214,168,99,.11); color:#7a5500;
  border-color:rgba(214,168,99,.28);
}
.vcrd__dot{
  width:6px; height:6px; border-radius:50%; background:currentColor; flex-shrink:0;
  animation:openPulse 2s ease-in-out infinite;
}

/* Name */
.vcrd__name{
  font-size:clamp(17px,2vw,23px); font-weight:600; color:var(--ink);
  letter-spacing:-.025em; line-height:1.15; margin-top:1px;
}

/* Rating */
.vcrd__rating{
  display:flex; align-items:center; gap:4px;
  font-size:12px; color:var(--ink-soft);
}
.vcrd__rating strong{ color:var(--ink); font-weight:600; }

/* Address + hours rows */
.vcrd__row{
  display:flex; align-items:flex-start; gap:9px; margin-top:2px;
}
.vcrd__row svg{ color:var(--green); flex-shrink:0; margin-top:2px; }
.vcrd__row strong{
  font-size:clamp(13px,1.3vw,14.5px); font-weight:500;
  color:var(--ink); letter-spacing:-.01em; line-height:1.4;
}

/* Expandable map */
.vcrd__mapwrap{
  margin-top:4px; border-radius:11px;
  border:1.5px solid rgba(36,28,18,.1); overflow:hidden;
}
.vcrd__maptgl{
  width:100%; display:flex; align-items:center; gap:7px;
  padding:9px 12px; background:none; border:none; cursor:pointer;
  font-size:12px; font-weight:700; color:var(--green);
  transition:background .2s;
}
.vcrd__maptgl:hover{ background:rgba(44,138,114,.07); }
.vcrd__maptgl-chev{ margin-left:auto; transition:transform .35s var(--ease); flex-shrink:0; }
.vcrd__maptgl.is-open .vcrd__maptgl-chev{ transform:rotate(180deg); }
.vcrd__mapbody{
  height:0; overflow:hidden;
  transition:height .4s cubic-bezier(.4,0,.2,1);
}
.vcrd__mapbody.is-open{ height:170px; border-top:1px solid rgba(36,28,18,.08); }
.vcrd__mapbody--soon.is-open{ height:90px; }
.vcrd__mapbody iframe{ width:100%; height:100%; border:none; display:block; }
.vcrd__map-soon{
  height:100%; display:flex; align-items:center; justify-content:center;
  gap:8px; flex-direction:column;
  background:linear-gradient(145deg,#f0faf6,#eaf5f0);
  color:var(--ink-soft); font-size:12px; font-weight:600;
}

/* Get Directions */
.vcrd__dir{
  display:inline-flex; align-items:center; justify-content:center;
  gap:7px; margin-top:2px; text-decoration:none;
  font-size:13px; padding:10px 18px; border-radius:10px;
}
.vcrd__dir.vcrd__dir--soon{
  background:rgba(36,28,18,.05); color:var(--ink-soft);
  border:1.5px solid rgba(36,28,18,.09);
  font-weight:700; cursor:default; pointer-events:none;
}

/* Arrow buttons */
.vcards-arr{
  position:absolute; top:50%; transform:translateY(-50%);
  width:36px; height:36px; border-radius:50%;
  background:rgba(255,255,255,.95); border:1px solid rgba(36,28,18,.06); cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  color:var(--ink); box-shadow:0 6px 18px -4px rgba(0,0,0,.22);
  z-index:10;
  transition:background .18s, transform .22s var(--ease), box-shadow .18s, color .18s;
}
.vcards-arr--prev{ left:-22px; }
.vcards-arr--next{ right:-22px; }
.vcards-arr:hover{ background:var(--green); color:#fff; border-color:var(--green); box-shadow:0 8px 22px -6px rgba(44,138,114,.6); transform:translateY(-50%) scale(1.08); }

/* Dot indicators */
.vcards-dots{
  position:absolute; bottom:12px; left:50%; transform:translateX(-50%);
  display:flex; gap:6px; z-index:10;
}
.vcards-dot{
  width:7px; height:7px; border-radius:50%; border:none; cursor:pointer; padding:0;
  background:rgba(255,255,255,.4);
  transition:all .3s var(--ease);
}
.vcards-dot.is-active{ background:#fff; width:20px; border-radius:4px; }

/* Mobile */
@media(max-width:840px){
  .vcards-wrap{
    grid-template-columns:1fr;
    padding-block:clamp(32px,5vw,56px);
    gap:clamp(20px,3vw,32px);
  }
  .vcards-header .lead{ max-width:none; }
}
@media(max-width:540px){
  .vcards-arr--prev{ left:6px; }
  .vcards-arr--next{ right:6px; }
  .vcrd{ grid-template-columns:1fr; }
  .vcrd__photo{ min-height:160px; aspect-ratio:16/7; }
  .vcrd__panel{ padding:14px; gap:6px; }
  .vcrd__name{ font-size:17px; }
  .vcrd__mapbody.is-open{ height:140px; }
}

/* =========================================================
   DISCOVER
   ========================================================= */
.discover__head{ display:flex; justify-content:space-between; align-items:flex-end; gap:40px; flex-wrap:wrap; }
.discover__head > div{ max-width:640px; }
.discover__explore{ white-space:nowrap; flex-shrink:0; }

/* Stats row */
.discover__stats{
  list-style:none; display:flex; gap:var(--space-md); flex-wrap:wrap;
  margin-top:var(--space-md); padding-top:var(--space-md);
  border-top:1px solid rgba(36,28,18,.1);
}
.discover__stats li{ font-size:13.5px; color:var(--ink-soft); display:flex; align-items:center; gap:5px; }
.discover__stats strong{ font-size:18px; font-weight:800; color:var(--green); letter-spacing:-.02em; }

.chips{ display:flex; gap:var(--space-2xs); flex-wrap:wrap; margin-top:var(--space-lg); }
.chips__item{
  display:inline-flex; align-items:center; min-height:40px;
  background:var(--paper); border:1.5px solid #e2d6c4; color:var(--ink-soft);
  border-radius:999px; padding:8px 20px; font-size:13.5px; font-weight:600;
  transition:.25s var(--ease); box-shadow:0 2px 8px -4px rgba(0,0,0,.08);
}
.chips__item:hover{ border-color:var(--green); color:var(--green); background:#f0faf7; }
.chips__item.is-active{
  background:var(--green); color:#fff; border-color:var(--green);
  box-shadow:0 6px 18px -6px rgba(44,138,114,.65);
}

.events{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:26px; }
.event{
  background:var(--paper); border-radius:22px; overflow:hidden;
  box-shadow:var(--shadow-card); border:1px solid rgba(36,28,18,.06);
  transition:transform .45s var(--ease-out), box-shadow .45s, opacity .4s;
}
.event:hover{ transform:translateY(-7px); box-shadow:0 44px 88px -36px rgba(50,32,10,.6), 0 0 0 1px rgba(44,138,114,.08); }
.event.is-hidden{ display:none; }
.event__media{ position:relative; height:215px; overflow:hidden; }
.event__media img{ width:100%; height:100%; object-fit:cover; transition:transform .7s var(--ease-out); }
.event__media::after{
  content:''; position:absolute; inset:0;
  background:linear-gradient(to top,rgba(18,13,8,.55) 0%,transparent 55%);
  pointer-events:none; z-index:1;
}
.event:hover .event__media img{ transform:scale(1.07); }
.event__date{
  position:absolute; top:14px; left:14px; background:rgba(18,13,8,.8); color:#fff;
  border-radius:11px; padding:8px 12px; text-align:center; line-height:1;
  backdrop-filter:blur(6px); z-index:2;
}
.event__date b{ display:block; font-size:20px; font-weight:800; }
.event__date i{ display:block; font-size:11px; font-style:normal; letter-spacing:.1em; margin-top:3px; color:var(--gold); }
.event__body{ padding:18px 18px 20px; }
.event__tag{
  display:inline-block; background:rgba(44,138,114,.1); color:var(--green);
  border:1px solid rgba(44,138,114,.25); border-radius:7px;
  padding:4px 10px; font-size:11.5px; font-weight:700; letter-spacing:.06em;
}
.event__title{ font-size:18px; font-weight:700; line-height:1.25; margin-top:10px; color:var(--ink); }
.event__place{ font-size:13.5px; color:var(--ink-mute); margin-top:4px; }
.event__foot{ display:flex; justify-content:space-between; align-items:center; margin-top:16px; padding-top:14px; border-top:1px solid #f0e7d8; font-size:13.5px; color:var(--ink-soft); }
.event__foot b{ color:var(--green); font-size:13px; font-weight:700; }

/* Places banner */
.places{
  margin-top:var(--space-lg); border-radius:24px; overflow:hidden;
  background:
    radial-gradient(130% 150% at 2% 108%, rgba(44,138,114,.20) 0%, transparent 52%),
    linear-gradient(135deg,#1a1208 0%,#281a0e 55%,#1e1610 100%);
  color:var(--light); padding:clamp(28px,3.4vw,44px);
  display:flex; justify-content:space-between; align-items:center; gap:var(--space-lg); flex-wrap:wrap;
  border:1px solid rgba(214,180,134,.18); position:relative;
  box-shadow:0 30px 70px -42px rgba(0,0,0,.72), inset 0 1px 0 rgba(255,255,255,.06);
}
.places::before{
  content:''; position:absolute; right:-70px; top:-70px;
  width:260px; height:260px;
  background:radial-gradient(circle,rgba(214,180,134,.14),transparent 68%);
  pointer-events:none;
}
.places__pin{
  display:inline-flex; align-items:center; justify-content:center;
  width:44px; height:44px; border-radius:13px;
  background:linear-gradient(160deg,rgba(214,180,134,.28),rgba(214,180,134,.09));
  border:1px solid rgba(214,180,134,.34);
  color:var(--gold); margin-bottom:var(--space-sm); flex-shrink:0;
  box-shadow:0 6px 22px -8px rgba(214,180,134,.45);
}
.places__text{ max-width:480px; position:relative; }
.places__kicker{ font-size:12px; font-weight:700; letter-spacing:.2em; text-transform:uppercase; color:var(--gold); }
.places__desc{ font-size:clamp(19px,1.7vw,22px); font-weight:600; color:var(--light); margin-top:var(--space-xs); line-height:1.4; letter-spacing:-.01em; }
.places__em{ font-family:var(--serif); font-style:italic; font-weight:500; color:var(--gold); letter-spacing:0; }
.places__right{ display:flex; flex-direction:column; gap:var(--space-sm); align-items:flex-start; flex-shrink:0; }
.places__chips{ display:flex; gap:var(--space-2xs); flex-wrap:wrap; }
.places__chips span{
  border:1px solid rgba(245,237,225,.2); color:rgba(245,237,225,.8);
  border-radius:999px; padding:8px 16px; font-size:13.5px; cursor:default;
  transition:transform .22s var(--ease), border-color .22s, color .22s, background .22s;
}
.places__chips span:hover{
  border-color:rgba(214,180,134,.5); color:var(--light);
  background:rgba(214,180,134,.1); transform:translateY(-2px);
}
.places__cta{ font-size:14px; padding:12px 22px; }

/* =========================================================
   TEASER
   ========================================================= */
.teaser__inner{ max-width:900px; margin-inline:auto; text-align:center; }
.teaser .h2{ margin-top:6px; }

/* =========================================================
   FAQ
   ========================================================= */
.faq__inner{ max-width:820px; }
.faq__title{ text-align:center; margin-bottom:var(--head-gap); }
.faq__list{ display:flex; flex-direction:column; gap:10px; }
.faq__title{ color:var(--ink); }

.faq__item{
  border:1.5px solid rgba(255,255,255,.65); background:rgba(255,255,255,.4);
  backdrop-filter:blur(10px); -webkit-backdrop-filter:blur(10px);
  border-radius:18px; overflow:hidden;
  transition:background .3s, box-shadow .3s, border-color .3s;
}
.faq__item:not([open]):hover{
  border-color:rgba(255,255,255,.9); background:rgba(255,255,255,.58);
  box-shadow:0 4px 20px -8px rgba(36,28,18,.1);
}
.faq__item[open]{
  background:transparent;
  border-color:var(--green);
  box-shadow:0 0 0 1px rgba(44,138,114,.12), 0 8px 36px -10px rgba(44,138,114,.28), inset 3px 0 0 var(--green);
}
.faq__item summary{
  list-style:none; display:flex; justify-content:space-between;
  align-items:center; gap:14px;
  padding:20px 24px; cursor:pointer;
}
.faq__item summary::-webkit-details-marker{ display:none; }
.faq__num{
  font-size:11px; font-weight:800; letter-spacing:.12em;
  color:var(--green-l); opacity:.7; flex-shrink:0;
  font-variant-numeric:tabular-nums;
  transition:opacity .3s;
}
.faq__item[open] .faq__num{ opacity:1; color:var(--green); }
.faq__item summary > span:not(.faq__num){
  flex:1; font-size:18px; font-weight:700; color:var(--ink); line-height:1.3;
  transition:color .3s;
}
.faq__item[open] summary > span:not(.faq__num){ color:var(--ink); }
.faq__ic{ position:relative; width:20px; height:20px; flex:none; }
.faq__ic::before,.faq__ic::after{
  content:""; position:absolute; background:var(--green-l);
  border-radius:2px; transition:transform .3s var(--ease), background .3s;
}
.faq__item[open] .faq__ic::before,
.faq__item[open] .faq__ic::after{ background:var(--green); }
.faq__ic::before{ left:0; top:9px; width:20px; height:2px; }
.faq__ic::after{ left:9px; top:0; width:2px; height:20px; }
.faq__item[open] .faq__ic::after{ transform:scaleY(0); }
.faq__a{ padding:0 24px 22px 56px; }
.faq__a p{ font-size:15.5px; line-height:1.65; color:var(--ink-soft); }

/* =========================================================
   CLAIM
   ========================================================= */
.claim{ background:radial-gradient(80% 120% at 50% 0%,rgba(44,138,114,.3) 0%,rgba(23,17,11,0) 50%),var(--espresso); }
.claim__inner{ max-width:820px; margin-inline:auto; text-align:center; }
.claim__title{ margin-inline:auto; }
.claim__stores{ display:flex; gap:14px; justify-content:center; margin-top:32px; flex-wrap:wrap; }
.store{ display:flex; align-items:center; gap:9px; border:1px solid rgba(245,237,225,.18); border-radius:12px; padding:11px 18px; color:var(--light); transition:.3s var(--ease); }
.store:hover{ background:rgba(245,237,225,.07); border-color:rgba(245,237,225,.32); transform:translateY(-2px); }
.store__ic{ width:20px; height:20px; color:var(--light); opacity:.9; flex:none; }
.store__txt{ text-align:left; line-height:1.2; }
.store__txt small{ display:block; font-size:10px; color:var(--light-dim); }
.store__txt b{ font-size:14px; font-weight:700; }
.claim .btn--lg{ margin-top:24px; }

/* =========================================================
   FOOTER — premium
   ========================================================= */
.footer{
  background:var(--espresso-3); color:var(--light-mute);
  overflow:hidden;
}

/* Tape / marquee */
.footer__tape{
  background:var(--green); overflow:hidden;
  padding:13px 0;
}
.footer__tape-track{
  display:flex; gap:0; width:max-content;
  animation:footerTape 28s linear infinite;
  will-change:transform;
}
.footer__tape-track span{
  white-space:nowrap; font-size:11.5px; font-weight:700;
  letter-spacing:.24em; text-transform:uppercase;
  color:rgba(255,255,255,.92); padding:0 22px;
}
.ft-dot{ color:rgba(255,255,255,.38); padding:0 4px!important; letter-spacing:0!important; }
@keyframes footerTape{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}

/* Body */
.footer__body{ padding-block:70px 0; position:relative; }

/* Watermark */
.footer__body::before{
  content:"MARBURG";
  position:absolute; inset:0; pointer-events:none; user-select:none;
  font-family:var(--serif); font-style:italic;
  font-size:clamp(90px,18vw,200px); font-weight:500;
  color:rgba(245,237,225,.025);
  display:flex; align-items:center; justify-content:center;
  letter-spacing:-.02em; white-space:nowrap;
}

/* Hero statement */
.footer__hero{
  display:flex; align-items:flex-end; justify-content:space-between; gap:24px;
  padding-bottom:38px;
}
.footer__hero-text{
  font-size:clamp(26px,4.5vw,50px); font-weight:800;
  letter-spacing:-.022em; line-height:1.04;
  text-transform:uppercase; color:var(--light);
}
.footer__hero-serif{
  font-family:var(--serif); font-style:italic;
  font-size:clamp(16px,3vw,30px); color:var(--gold);
  flex-shrink:0; line-height:1; padding-bottom:6px;
}

/* Rule */
.footer__rule{
  height:1px;
  background:linear-gradient(90deg,transparent 0%,rgba(214,180,134,.5) 35%,var(--gold) 50%,rgba(214,180,134,.5) 65%,transparent 100%);
  margin-bottom:52px;
}

/* Main grid */
.footer__grid{
  display:grid; grid-template-columns:1.4fr 1fr;
  gap:clamp(40px,6vw,88px); margin-bottom:56px;
}

/* Brand */
.footer__logo{ display:flex; align-items:center; gap:12px; margin-bottom:16px; }
.footer__logo img{ width:38px; height:38px; border-radius:11px; box-shadow:0 6px 18px -8px rgba(0,0,0,.7); }
.footer__logo span{ font-size:18px; font-weight:700; color:var(--light); letter-spacing:-.01em; }
.footer__brand>p{ font-size:14px; color:var(--light-dim); max-width:230px; line-height:1.7; }

/* App badges */
.footer__apps{ display:flex; gap:10px; margin-top:26px; flex-wrap:wrap; }
.footer__app{
  display:flex; align-items:center; gap:9px;
  border:1px solid rgba(245,237,225,.18); border-radius:12px;
  padding:10px 16px; color:var(--light);
  transition:.3s var(--ease);
}
.footer__app:hover{
  background:rgba(245,237,225,.07); border-color:rgba(245,237,225,.32);
  transform:translateY(-2px);
}
.footer__app-ic{ width:18px; height:18px; flex:none; opacity:.85; }
.footer__app span{ text-align:left; line-height:1.2; }
.footer__app small{ display:block; font-size:9.5px; color:var(--light-dim); }
.footer__app b{ font-size:13px; font-weight:700; }

/* Nav */
.footer__nav{ display:flex; gap:clamp(28px,4vw,52px); }
.footer__col{ display:flex; flex-direction:column; gap:13px; }
.footer__col h4{
  font-weight:700; color:var(--light); font-size:11.5px;
  letter-spacing:.14em; text-transform:uppercase; margin-bottom:4px;
}
.footer__col a{ color:var(--light-mute); transition:color .2s; font-size:14.5px; }
.footer__col a:hover{ color:var(--light); }

/* Bottom bar */
.footer__bottom{
  display:flex; justify-content:space-between; align-items:center;
  border-top:1px solid rgba(245,237,225,.07);
  padding-block:22px 44px; font-size:12.5px; color:var(--light-dim);
  flex-wrap:wrap; gap:16px;
}
.footer__tagline{ opacity:.7; }

/* Social icons */
.footer__social{ display:flex; gap:8px; align-items:center; }
.footer__social-link{
  width:36px; height:36px; border-radius:9px;
  border:1px solid rgba(245,237,225,.13);
  display:flex; align-items:center; justify-content:center;
  color:var(--light-mute); transition:.3s var(--ease);
}
.footer__social-link:hover{
  color:var(--light); border-color:rgba(245,237,225,.3);
  background:rgba(245,237,225,.06); transform:translateY(-2px);
}
.footer__social-link svg{ width:15px; height:15px; }

/* =========================================================
   reveal animation
   ========================================================= */
[data-reveal]{ opacity:0; transform:translateY(34px); transition:opacity .9s var(--ease-out), transform .9s var(--ease-out); }
[data-reveal].is-in{ opacity:1; transform:none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width:960px){
  .nav{ position:relative; }
  .nav__burger{ display:block; }
  .nav__cta{ display:none; }
  .nav__mid{
    display:flex; flex-direction:column; align-items:stretch; gap:4px;
    position:absolute; top:calc(100% + 10px); left:0; right:0; margin:0; padding:10px;
    background:rgba(17,12,7,.97);
    backdrop-filter:blur(30px) saturate(1.4); -webkit-backdrop-filter:blur(30px) saturate(1.4);
    border:1px solid rgba(245,237,225,.14); border-radius:16px;
    box-shadow:0 26px 55px -22px rgba(0,0,0,.8);
    opacity:0; visibility:hidden; transform:translateY(-8px);
    transition:opacity .22s ease, transform .22s ease, visibility .22s;
    z-index:120;
  }
  .nav.is-menu-open .nav__mid{ opacity:1; visibility:visible; transform:translateY(0); }
  .nav__mid .nav__link{ padding:12px 14px; border-radius:10px; font-size:15px; }
  .nav__mid .nav__link:hover, .nav__mid .nav__link.is-active{ background:rgba(245,237,225,.06); }
  .nav__mid-cta{ display:block; margin-top:6px; text-align:center; }
  .nav__name-sub{ display:none; }
  .offer__grid{ grid-template-columns:1fr; }
  .cafe__top{ grid-template-columns:1fr; }
  .events{ grid-template-columns:repeat(2,1fr); }
  .footer__grid{ grid-template-columns:1fr 1fr; }
  /* brew */
  .brew__scene{ height:220vh; }
  .brew__pin{ flex-direction:column; gap:20px; }
  .brew__device{ width:150px; }
  .brew__steps{ max-width:100%; }
  .brew-step__desc{ font-size:12px; }
  /* cafe gallery — scale stage proportionally */
  .cafe__photo-stage{ transform:translate(-50%,-50%) scale(0.78); }
  .cafe__gallery-strip{ height:250px; }
  /* footer */
  .footer__grid{ grid-template-columns:1fr; }
  .footer__hero{ flex-direction:column; align-items:flex-start; gap:6px; }
  .footer__hero-serif{ font-size:clamp(15px,4vw,22px); }
}
@media (max-width:560px){
  .nav__name{ display:none; }
  .events{ grid-template-columns:1fr; }
  .hero__title{ font-size:clamp(40px,13vw,60px); }
  .lang{ display:none; }
  .places{ flex-direction:column; align-items:flex-start; }
  /* cafe gallery mobile */
  .cafe__photo-stage{ transform:translate(-50%,-50%) scale(0.55); }
  .cafe__gallery-strip{ height:190px; margin-bottom:clamp(50px,8vw,80px); }
  /* footer mobile */
  .footer__nav{ flex-wrap:wrap; gap:28px; }
  .footer__bottom{ flex-direction:column; text-align:center; }
  .footer__apps{ flex-direction:column; }
  .footer__brew-step__phone{ width:52px; height:90px; }
}

/* =========================================================
   section alternation overrides — dark bg for offer / cafe / teaser
   ========================================================= */

/* Offer: override the light gradient when dark */
.offer.section--dark{
  background: var(--espresso);
}
.offer.section--dark .h2,
.offer.section--dark .offer__title{ color:var(--light); }
.offer.section--dark .lead{ color:var(--light-mute); }
.offer.section--dark .eyebrow{ color:var(--gold); }
.offer.section--dark .ticklist strong{ color:var(--light); }
.offer.section--dark .ticklist span{ color:var(--light-mute); }
.offer.section--dark .ticklist .tick{
  background:rgba(44,138,114,.18); border:1.5px solid rgba(44,138,114,.3);
}
.offer.section--dark .offer__meta{ color:var(--light-mute); }
.offer.section--dark .offer__glow{
  background:radial-gradient(ellipse 60% 55% at 70% 60%, rgba(44,138,114,.18) 0%, transparent 72%);
}

/* Café (vcards section): text on dark */
.cafe.section--dark .h2{ color:var(--light); }
.cafe.section--dark .lead{ color:var(--light-mute); }
.cafe.section--dark .eyebrow,
.cafe.section--dark .cafe__eyebrow{ color:var(--gold); }
.cafe.section--dark .vcards-hud{ color:rgba(245,237,225,.32); }
.cafe.section--dark .vcards-hud-tot{ color:var(--light-mute); }
.cafe.section--dark .cafe__partner-badge{
  color:var(--gold); border-color:rgba(214,180,134,.28);
}

/* Teaser: text on dark */
.teaser.section--dark .h2,
.teaser.section--dark .teaser__h2{ color:var(--light); }
.teaser.section--dark .teaser__lead{ color:var(--light-mute); }
.teaser.section--dark .teaser__node-title{ color:var(--light); }
.teaser.section--dark .teaser__node-sub{ color:var(--light-mute); }
.teaser.section--dark .teaser__badge{
  border-color:rgba(245,237,225,.18); color:var(--light-mute);
}
.teaser.section--dark .teaser__badge--live{
  background:rgba(44,138,114,.14); border-color:rgba(44,138,114,.35); color:var(--green-l);
}
.teaser.section--dark .teaser__dot{
  background:var(--espresso-2); border-color:rgba(245,237,225,.2);
}
.teaser.section--dark .teaser__node--live .teaser__dot{
  background:var(--green); border-color:var(--green);
}
.teaser.section--dark .teaser__road::before{
  background:linear-gradient(to bottom, var(--green), rgba(245,237,225,.08));
}
.teaser.section--dark .teaser__cycle span{ color:var(--light-mute); }

/* =========================================================
   reduced motion
   ========================================================= */
@media (prefers-reduced-motion:reduce){
  .float,.hero__img{ animation:none !important; }
  .brew__video{ pointer-events:none; }
  [data-reveal]{ opacity:1 !important; transform:none !important; }
  .hero__img{ transform:scale(1.03); }
}
