/* =========================================================
   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 */

  /* 8pt spacing scale (Material-aligned) — see design-system.md §4 */
  --space-3xs: 4px;
  --space-2xs: 8px;
  --space-xs:  12px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  32px;
  --space-xl:  48px;
  --space-2xl: 64px;
  --space-3xl: 96px;

  /* ---- Page spacing system (one rhythm for every section) ---- */
  --section-py:  clamp(64px, 8vw, 104px);  /* uniform top & bottom padding per section */
  --head-gap:    14px;                      /* label↔heading and heading↔description */
  --head-flow:   clamp(34px, 4.5vw, 52px);  /* header block → content, and content → CTA */
}

*{ 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(--head-gap); 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(--head-gap);
}
.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{
  /* Full-screen hero, unified across all three pages (index/student/business):
     height tracks the viewport so content stays in view on any monitor. */
  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; inset:0;
  width:100%; height:100%;
  object-fit:cover;                /* full-bleed; hero height matches the image ratio so nothing crops */
  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(38px,6.2vw,68px); line-height:1.0; 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-py); }

/* =========================================================
   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:var(--head-flow); }
.bgrid__text .btn{ margin-top:var(--head-flow); }
.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: var(--section-py);
}
.brew__head{ text-align:center; max-width:720px; margin-inline:auto; padding-top:var(--section-py); padding-bottom:var(--head-flow); }
.brew__head .h2{ font-weight:600; }
.brew__head .eyebrow{ justify-content:center; margin-bottom:var(--head-gap); font-weight:600; }
.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:180vh; position:relative; }

/* Sticky inner: stays at top while scene scrolls */
.brew__pin{
  position:sticky; top:0; height:100vh; height:100svh;
  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(170px,14vw,210px);
  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(16px,2.2vh,22px);
  max-width:400px; width:100%;
}

.brew-step{
  display:flex; align-items:flex-start;
  gap:clamp(12px,1.1vw,16px); padding:clamp(16px,2vh,22px) clamp(18px,1.6vw,22px);
  border-radius:18px;
  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:5px; line-height:1.55;
}

/* =========================================================
   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; }
.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__stores{ display:flex; gap:7px; width:100%; }
.bscr__store-btn{
  flex:1 1 0; min-width:0;
  display:flex; align-items:center; justify-content:center; gap:4px;
  background:#fff; border:1px solid rgba(0,0,0,.06);
  color:#15110c; border-radius:8px;
  padding:8px 10px; font-size:9px; font-weight:500;
  white-space:nowrap;
  box-shadow:0 2px 6px -3px rgba(0,0,0,.3);
}
.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(80px,7vw,110px); aspect-ratio:1;
  position:relative; display:flex; align-items:center; justify-content:center;
  margin-block:4px;
}
.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%);
}
/* QR image centred in the scan frame (same as Student page) */
.bscr__qr-img{
  width:88%; height:88%; object-fit:contain; display:block;
  border-radius:6px; background:#fff; padding:3px;
}
.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;
}

/* ---- Screen: Redeem reward (light, app-accurate — no brown) ---- */
.bscr--redeem{
  position:absolute; inset:0; padding:20px 15px;
  background:#faf7f2;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:9px;
}
.bscr__rqr{
  width:clamp(72px,6.2vw,92px); aspect-ratio:1; padding:7px;
  background:#fff; border:1px solid rgba(23,17,11,.1); border-radius:12px;
  box-shadow:0 6px 18px -10px rgba(0,0,0,.35);
}
.bscr__rqr img{ width:100%; height:100%; object-fit:contain; display:block; }
.bscr__rtitle{
  font-size:clamp(13px,1.15vw,15px); font-weight:800; color:#1a140d;
  text-align:center; line-height:1.2; letter-spacing:-.01em; margin-top:2px;
}
.bscr__rsteps{ list-style:none; margin:2px 0 0; padding:0; display:flex; flex-direction:column; gap:7px; width:100%; }
.bscr__rsteps li{ display:flex; align-items:center; gap:8px; font-size:9.5px; line-height:1.3; color:#4a4034; font-weight:500; }
.bscr__rno{
  width:16px; height:16px; flex:none; border-radius:50%;
  background:rgba(44,138,114,.14); color:var(--green);
  display:flex; align-items:center; justify-content:center; font-size:9px; font-weight:800;
}
.bscr__rbtn{
  margin-top:5px; width:100%;
  background:var(--green); color:#fff; border-radius:9px;
  padding:9px; text-align:center; font-size:11px; font-weight:700;
}

/* ---- Screen: Discover (places list) ---- */
.bscr--discover{ justify-content:flex-start; padding-top:6px; gap:6px; }
.bscr__disc{ width:100%; display:flex; flex-direction:column; gap:6px; margin-top:3px; }
.bscr__disc-row{
  display:flex; align-items:center; gap:7px;
  background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.09);
  border-radius:10px; padding:6px 7px;
}
.bscr__disc-thumb{
  width:24px; height:24px; border-radius:6px; flex:none; overflow:hidden;
  background:#243c33;
}
.bscr__disc-thumb img{ width:100%; height:100%; object-fit:cover; display:block; }
.bscr__disc-tx{ flex:1; min-width:0; display:flex; flex-direction:column; text-align:left; }
.bscr__disc-tx b{ font-size:9px; font-weight:700; color:var(--light); line-height:1.15; letter-spacing:-.01em; }
.bscr__disc-tx i{ font-size:7.5px; font-style:normal; color:rgba(245,237,225,.42); white-space:nowrap; margin-top:1px; }
.bscr__disc-tag{
  font-size:6.5px; font-weight:700; letter-spacing:.03em; text-transform:uppercase;
  color:var(--green-l); background:rgba(44,138,114,.18);
  padding:3px 5px; border-radius:999px; flex:none;
}

/* ---- 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%; gap:18px; }
  .brew-step{ padding:17px 18px; }
  .brew-step__title{ font-size:14px; }
  .brew-step__desc{ font-size:12px; }
  .brew__scene{ height:250vh; }
}

/* =========================================================
   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{
  background:var(--espresso);
  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:14px;
}
.vcards-header .h2{
  font-size:clamp(26px,3.4vw,46px);
  line-height:1.1; letter-spacing:-.03em;
}
.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; }
  .vcards-header .h2{ font-size:clamp(22px,5vw,32px); }
}
@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:24px; flex-wrap:wrap;
  margin-top:24px; padding-top:20px;
  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:9px; flex-wrap:wrap; margin-top:var(--head-flow); }
.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:var(--space-md); }
.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:28px; border-radius:22px; overflow:hidden;
  background:linear-gradient(135deg,#1a1208 0%,#281a0e 55%,#1e1610 100%);
  color:var(--light); padding:34px 38px;
  display:flex; justify-content:space-between; align-items:center; gap:32px; flex-wrap:wrap;
  border:1px solid rgba(214,180,134,.12); position:relative;
}
.places::before{
  content:''; position:absolute; right:-60px; top:-60px;
  width:220px; height:220px;
  background:radial-gradient(circle,rgba(214,180,134,.1),transparent 68%);
  pointer-events:none;
}
.places__pin{
  display:inline-flex; align-items:center; justify-content:center;
  width:36px; height:36px; border-radius:10px;
  background:rgba(214,180,134,.14); border:1px solid rgba(214,180,134,.22);
  color:var(--gold); margin-bottom:12px; flex-shrink:0;
}
.places__text{ max-width:460px; }
.places__kicker{ font-size:12px; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:var(--gold); }
.places__desc{ font-size:19px; font-weight:700; color:var(--light); margin-top:8px; line-height:1.35; }
.places__right{ display:flex; flex-direction:column; gap:16px; align-items:flex-start; flex-shrink:0; }
.places__chips{ display:flex; gap:8px; flex-wrap:wrap; }
.places__chips span{ border:1px solid rgba(245,237,225,.18); color:rgba(245,237,225,.75); border-radius:999px; padding:8px 15px; font-size:13.5px; transition:.2s; }
.places__chips span:hover{ border-color:rgba(245,237,225,.38); color:var(--light); }
.places__cta{ font-size:14px; padding:11px 20px; }

/* =========================================================
   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:34px; }
.faq__list{ display:flex; flex-direction:column; gap:18px; }
.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:11px; border:1px solid rgba(245,237,225,.26); border-radius:13px; padding:12px 20px; transition:.3s var(--ease); }
.store:hover{ background:rgba(245,237,225,.08); transform:translateY(-2px); }
.store__ic{ width:22px; height:22px; color:var(--light); opacity:.95; flex:none; }
.store__txt{ text-align:left; line-height:1.15; }
.store__txt small{ display:block; font-size:10px; color:var(--light-dim); }
.store__txt b{ font-size:15px; 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;
  background:var(--green); border:1px solid var(--green); border-radius:12px;
  padding:11px 18px; color:#fff;
  box-shadow:0 16px 34px -16px rgba(44,138,114,.9);
  transition:.3s var(--ease);
}
.footer__app:hover{
  background:var(--green-d); border-color:var(--green-d);
  transform:translateY(-2px); box-shadow:0 22px 44px -16px rgba(44,138,114,.95);
}
.footer__app-ic{ width:18px; height:18px; flex:none; opacity:.9; color:#fff; }
.footer__app span{ text-align:left; line-height:1.2; }
.footer__app small{ display:block; font-size:9.5px; color:rgba(255,255,255,.78); }
.footer__app b{ font-size:13px; font-weight:700; color:#fff; }

/* 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); }
}

/* =========================================================
   ░░░  PAGE 2 — BUSINESS / PARTNER  ░░░
   Built entirely from existing :root tokens. No new colors,
   fonts, shadows, or radii. Mirrors page-1 grammar:
   alternating dark↔cream, .h2 + serif accent, .eyebrow,
   .lead, .ticklist, glass-lite cards on cream, white cards
   on espresso, .btn system, [data-reveal] motion.
   ========================================================= */

/* shared business section padding (matches page-1 rhythm) */
.bsec{ padding-block:var(--section-py); }

/* section heading block */
.bhead{ max-width:760px; }
.bhead--center{ margin-inline:auto; text-align:center; }
.bhead--center .eyebrow{ justify-content:center; }
/* titles use one system now — .h2 = Bricolage 700 (DS §3), no per-section weight override */
.bhead .lead{ margin-top:var(--head-gap); }
.bhead--center .lead{ margin-inline:auto; }

/* text colour handling on dark business sections */
.bsec.section--dark .h2{ color:var(--light); }
.bsec.section--dark .lead{ color:var(--light-mute); }
.bsec.section--dark .eyebrow{ color:var(--gold); }
.bsec.section--dark .ticklist strong{ color:var(--light); }
.bsec.section--dark .ticklist span{ color:var(--light-mute); }
.bsec.section--dark .ticklist .tick{
  background:rgba(44,138,114,.18); border:1.5px solid rgba(44,138,114,.3);
}

/* generic two-column media/text grid (mirrors .offer__grid) */
.bgrid{
  display:grid; grid-template-columns:1.02fr .98fr;
  gap:clamp(40px,6vw,72px); align-items:center;
}
.bgrid__media{ position:relative; }
.bgrid--rev .bgrid__text{ order:2; }
.bgrid--rev .bgrid__media{ order:1; }

/* ---------- Benefits grid (cream, glass-lite cards) ---------- */
.benes{
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:clamp(14px,1.4vw,20px); margin-top:var(--head-flow);
}
.bene{
  padding:clamp(22px,2vw,28px); border-radius:var(--radius);
  border:1.5px solid rgba(255,255,255,.6); background:rgba(255,255,255,.42);
  backdrop-filter:blur(10px); -webkit-backdrop-filter:blur(10px);
  transition:transform .45s var(--ease-out), box-shadow .45s, border-color .3s, background .3s;
}
.bene:hover{
  transform:translateY(-6px); border-color:rgba(44,138,114,.4);
  background:rgba(255,255,255,.62);
  box-shadow:0 24px 54px -30px rgba(50,32,10,.5);
}

/* ---------- Spotlight hover (native adaptation of the SpotlightCard idea) ----------
   A green radial follows the cursor across the card. JS sets --mx/--my per element;
   CSS paints a pointer-events-none overlay. Matched to our palette (green), on cream. */
[data-spotlight]{ position:relative; isolation:isolate; }
[data-spotlight] > .spotlight{
  position:absolute; inset:0; border-radius:inherit; z-index:0;
  pointer-events:none; opacity:0; transition:opacity .4s var(--ease);
  background:radial-gradient(460px circle at var(--mx,50%) var(--my,50%),
            rgba(44,138,114,.18), rgba(44,138,114,.05) 32%, transparent 48%);
}
[data-spotlight]:hover > .spotlight{ opacity:1; }
[data-spotlight] > :not(.spotlight){ position:relative; z-index:1; }
.bene__ic{
  width:46px; height:46px; border-radius:12px;
  background:rgba(44,138,114,.1); border:1px solid rgba(63,169,141,.22);
  color:var(--green); display:flex; align-items:center; justify-content:center;
  margin-bottom:16px;
}
.bene__t{ font-size:18px; font-weight:600; color:var(--ink); letter-spacing:-.01em; line-height:1.25; }
.bene__d{ font-size:14.5px; color:var(--ink-soft); margin-top:8px; line-height:1.6; }

/* ---------- Onboarding steps (dark, 4-up reveal) ---------- */
.osteps{
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:clamp(14px,1.4vw,20px); margin-top:clamp(36px,4vw,54px);
}
.ostep{
  position:relative; padding:clamp(22px,2vw,28px);
  border-radius:var(--radius); border:1px solid rgba(245,237,225,.14);
  background:rgba(245,237,225,.04); backdrop-filter:blur(6px); -webkit-backdrop-filter:blur(6px);
  transition:transform .45s var(--ease-out), border-color .3s, background .3s;
}
.ostep:hover{
  transform:translateY(-6px); border-color:rgba(44,138,114,.4);
  background:rgba(245,237,225,.07);
}
.ostep__no{
  font-family:var(--serif); font-style:italic; font-weight:500;
  font-size:34px; color:var(--green-l); line-height:1;
}
.ostep__ic{
  width:42px; height:42px; border-radius:12px;
  background:rgba(44,138,114,.16); border:1px solid rgba(63,169,141,.32);
  color:var(--green-l); display:flex; align-items:center; justify-content:center;
  margin:16px 0 14px;
}
.ostep__t{ font-size:17px; font-weight:600; color:var(--light); letter-spacing:-.01em; line-height:1.25; }
.ostep__d{ font-size:14px; color:var(--light-mute); margin-top:8px; line-height:1.6; }

/* ---------- Rewards card mockup (build section) — matches the wireframe ----------
   One branded loyalty card: café header, current-level + reward, a big stamp row,
   and the 3-tier level list. Typography mirrors page 1 (eyebrow, Newsreader serif
   accent, 600 display weight, .lead-scale body).                                  */
.rcard{
  max-width:430px; margin-inline:auto; width:100%;
  background:var(--paper); border-radius:var(--radius);
  padding:clamp(20px,2.4vw,28px);
  box-shadow:var(--shadow-card); border:1px solid rgba(36,28,18,.06);
  display:flex; flex-direction:column; gap:var(--space-md);
}

/* header: café eyebrow + serif tagline + logo tile */
.rcard__head{ display:flex; align-items:flex-start; justify-content:space-between; gap:var(--space-sm); }
.rcard__eyebrow{
  display:block; font-size:11px; font-weight:700; letter-spacing:.2em;
  text-transform:uppercase; color:#a87f3f; margin-bottom:5px;
}
.rcard__title{
  font-family:var(--serif); font-style:italic; font-weight:500;
  font-size:clamp(19px,2vw,23px); color:var(--ink); letter-spacing:-.01em; line-height:1.1;
}
.rcard__title .serif--green{ color:var(--green); }
.rcard__logo{
  width:44px; height:44px; flex:none; border-radius:12px; object-fit:cover;
  box-shadow:0 8px 18px -8px rgba(0,0,0,.4);
}
.rcard__note{ font-size:12px; color:var(--ink-soft); margin-top:calc(-1 * var(--space-2xs)); }

/* current level pill + reward */
.rcard__meta{ display:flex; align-items:center; justify-content:space-between; gap:var(--space-sm); }
.rcard__level{
  font-size:11px; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  color:#fff; background:var(--green); border-radius:999px; padding:6px 14px; white-space:nowrap;
}
.rcard__reward{ font-size:15px; font-weight:600; color:var(--ink); letter-spacing:-.01em; text-align:right; }

/* big stamp row */
.rcard__stamps{ display:flex; align-items:center; justify-content:space-between; gap:6px; }
.rstamp{
  flex:1; aspect-ratio:1; border-radius:50%;
  background:rgba(36,28,18,.07); border:1.5px solid transparent;
  display:flex; align-items:center; justify-content:center; color:rgba(36,28,18,.22);
}
/* collected — brand green (active/completed) */
.rstamp--on{ background:var(--green); border-color:var(--green); color:rgba(255,255,255,.95); box-shadow:0 8px 18px -8px rgba(44,138,114,.55); }
/* the reward goal — on-brand green marker with a subtle dashed ring (not the old dark circle) */
.rstamp--gift{ background:rgba(44,138,114,.12); border:1.5px dashed var(--green); color:var(--green); }

/* 3-tier level list */
/* rewards list — app style: reward icon (left) · name + status text · state icon (right) */
.rlevels{ display:flex; flex-direction:column; gap:var(--space-2xs); }
.rlevel{
  display:flex; align-items:center; gap:var(--space-sm);
  padding:11px var(--space-sm); border-radius:16px;
  background:rgba(36,28,18,.045); border:1.5px solid transparent;
}
.rlevel__ic{
  width:40px; height:40px; flex:none; border-radius:12px;
  background:#fff; box-shadow:0 2px 8px -4px rgba(0,0,0,.14);
  display:flex; align-items:center; justify-content:center; color:var(--ink-mute);
}
.rlevel__body{ flex:1; min-width:0; }
.rlevel__t{ font-size:15px; font-weight:700; color:var(--ink); letter-spacing:-.01em; line-height:1.2; }
.rlevel__sub{ font-size:12.5px; color:var(--ink-soft); margin-top:2px; }
.rlevel__status{
  width:34px; height:34px; flex:none; border-radius:50%;
  display:flex; align-items:center; justify-content:center; color:var(--ink-mute);
}

/* DONE — light-green card + filled green check */
.rlevel--done{ background:linear-gradient(150deg,#f2faf6,#e9f6ef); }
.rlevel--done .rlevel__ic{ color:var(--green); }
.rlevel--done .rlevel__status{ background:var(--green); color:#fff; box-shadow:0 8px 18px -8px rgba(44,138,114,.6); }

/* ACTIVE / current — white, brand-green border kept, green title + unlock */
.rlevel--active{
  background:#fff; border-color:var(--green);
  box-shadow:0 12px 28px -16px rgba(44,138,114,.5);
}
.rlevel--active .rlevel__t{ color:var(--green); }
.rlevel--active .rlevel__ic{ color:var(--green); }
.rlevel--active .rlevel__status{ color:var(--green); }

/* LOCKED — disabled, reduced contrast + closed lock */
.rlevel--locked{ opacity:.55; }
.rlevel--locked .rlevel__ic{ background:rgba(36,28,18,.06); box-shadow:none; }

/* ---------- Counter scanner mockup (dark) ---------- */
.scanner{ display:flex; gap:clamp(18px,2.5vw,30px); align-items:center; justify-content:center; flex-wrap:wrap; }
/* ---------- Loyalty / member cards — three side-by-side editions (green · cream · dark)
   Premium card set matching the reference: brand top-left, embossed logo emblem top-right
   (blended, ring = lighter shade of the card), guilloché waves, Member ID (LEFT) + QR.   */
/* works-for-everyone media: loyalty-card fan + counter scanner, side by side (wireframe layout) */
.every-media{
  display:flex; align-items:center; justify-content:center;
  gap:clamp(14px,2vw,26px); flex-wrap:wrap;
}
.lcards{
  display:flex; justify-content:center; align-items:center;
  padding-block:clamp(10px,2vw,22px);
}
.lcard{
  position:relative; flex:none;
  width:min(178px,46vw); aspect-ratio:1.04;
  border-radius:24px; overflow:hidden;
  padding:clamp(15px,1.7vw,19px);
  display:flex; flex-direction:column; justify-content:space-between;
  color:#fff;
  box-shadow:0 34px 60px -30px rgba(28,22,12,.72), 0 2px 6px -3px rgba(0,0,0,.3);
  border:1px solid rgba(255,255,255,.1);
  transition:transform .5s var(--ease-out);
}
.lcard > *{ position:relative; z-index:2; }

/* fan: green front-left, cream middle, dark back-right */
.lcard--green{ transform:rotate(-8deg);              z-index:3; margin-right:-36px; }
.lcard--cream{ transform:rotate(-1deg) translateY(-8px); z-index:2; margin-right:-36px; }
.lcard--dark {  transform:rotate(7deg);               z-index:1; }
.lcards:hover .lcard--green{ transform:rotate(-8deg) translateX(-10px); }
.lcards:hover .lcard--dark { transform:rotate(7deg) translateX(10px); }

/* guilloché wave texture (lower half, fading in from the left) */
.lcard__wave{
  position:absolute; inset:32% 0 0 0; z-index:1; pointer-events:none;
  background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='170' height='100' viewBox='0 0 170 100'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.18'%3E%3Cpath d='M0 24 Q42 10 85 24 T170 24'/%3E%3Cpath d='M0 44 Q42 30 85 44 T170 44'/%3E%3Cpath d='M0 64 Q42 50 85 64 T170 64'/%3E%3Cpath d='M0 84 Q42 70 85 84 T170 84'/%3E%3C/g%3E%3C/svg%3E") repeat;
  background-size:170px 100px;
  -webkit-mask:linear-gradient(100deg, transparent 6%, #000 70%);
          mask:linear-gradient(100deg, transparent 6%, #000 70%);
}

.lcard__top{ display:flex; align-items:flex-start; justify-content:space-between; gap:8px; }
.lcard__brand b{ display:block; font-size:clamp(15px,1.9vw,19px); font-weight:800; letter-spacing:.02em; line-height:1.08; }
.lcard__brand b:last-child{ font-size:.78em; letter-spacing:.08em; opacity:.92; }

/* emblem: the real Marburg Club logo, bordered ring = lighter shade of the card, no white fill */
.lcard__emblem{
  width:clamp(46px,22%,58px); aspect-ratio:1; flex:none; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  border:1.5px solid var(--lcard-ring); background:transparent;
}
.lcard__emblem img{ width:100%; height:100%; object-fit:contain; }

.lcard__foot{ display:flex; align-items:flex-end; justify-content:space-between; gap:10px; }
.lcard__id-k{ display:block; font-size:9.5px; opacity:.72; letter-spacing:.02em; }
.lcard__id-v{ display:block; margin-top:3px; font-size:clamp(11px,1.35vw,13px); font-weight:700; letter-spacing:.01em; white-space:nowrap; }
.lcard__qr{
  width:clamp(38px,21%,44px); aspect-ratio:1; flex:none; border-radius:9px;
  background:#fff; padding:4px; box-shadow:0 5px 14px -6px rgba(0,0,0,.5);
}
.lcard__qr img{ width:100%; height:100%; display:block; image-rendering:pixelated; }

/* ── GREEN edition ── */
.lcard--green{ --lcard-ring:rgba(255,255,255,.42); color:#fff;
  background:linear-gradient(150deg,#94a790 0%,#6f8a78 55%,#5b7765 100%); }
/* ── CREAM edition ── */
.lcard--cream{ --lcard-ring:rgba(255,255,255,.78); color:#3c2f1d;
  background:linear-gradient(150deg,#efe4cf 0%,#e6d7bb 55%,#ddccae 100%); }
.lcard--cream .lcard__wave{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='170' height='100' viewBox='0 0 170 100'%3E%3Cg fill='none' stroke='%23000000' stroke-opacity='0.10'%3E%3Cpath d='M0 24 Q42 10 85 24 T170 24'/%3E%3Cpath d='M0 44 Q42 30 85 44 T170 44'/%3E%3Cpath d='M0 64 Q42 50 85 64 T170 64'/%3E%3Cpath d='M0 84 Q42 70 85 84 T170 84'/%3E%3C/g%3E%3C/svg%3E");
}
.lcard--cream .lcard__id-k{ opacity:.6; }
/* ── DARK edition ── */
.lcard--dark{ --lcard-ring:rgba(255,255,255,.24); color:#fff;
  background:linear-gradient(150deg,#2c2a26 0%,#1a1815 55%,#100f0d 100%); }

@media(max-width:600px){
  .lcard{ width:min(178px,58vw); }
  .lcard--green,.lcard--cream{ margin-right:-32px; }
}
.sdevice{
  width:180px; flex:none; border-radius:20px; padding:14px;
  background:linear-gradient(165deg,#0e1d30,#07101c);
  border:1.5px solid rgba(100,140,200,.18);
  box-shadow:0 40px 80px -22px rgba(0,0,0,.85), inset 0 1px 0 rgba(255,255,255,.06);
}
.sdevice__screen{
  border-radius:12px; padding:22px 14px; min-height:140px;
  background:radial-gradient(120% 90% at 50% 30%,rgba(44,138,114,.22),rgba(7,16,28,.4));
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px; text-align:center;
}
.sdevice__check{
  width:44px; height:44px; border-radius:50%;
  background:rgba(44,138,114,.3); border:1.5px solid rgba(63,169,141,.7);
  color:var(--green-l); display:flex; align-items:center; justify-content:center;
  box-shadow:0 0 26px -6px rgba(44,138,114,.6);
}
.sdevice__t{ font-size:13px; font-weight:700; color:#fff; }
.sdevice__s{ font-size:11px; color:var(--light-mute); }

/* ---------- App business-profile mockup (cream) ---------- */
.bprofile{
  max-width:360px; margin-inline:auto; width:100%;
  background:var(--paper); border-radius:var(--radius); overflow:hidden;
  box-shadow:var(--shadow-card); border:1px solid rgba(36,28,18,.06);
}
.bprofile__photo{ position:relative; height:170px; overflow:hidden; }
.bprofile__photo img{ width:100%; height:100%; object-fit:cover; }
.bprofile__feat{
  position:absolute; top:12px; left:12px;
  background:rgba(18,13,8,.78); color:var(--gold); backdrop-filter:blur(4px);
  font-size:10px; font-weight:700; letter-spacing:.12em; text-transform:uppercase;
  padding:6px 11px; border-radius:8px;
}
.bprofile__body{ padding:18px; display:flex; flex-direction:column; gap:9px; }
.bprofile__row{ display:flex; align-items:center; justify-content:space-between; gap:10px; }
.bprofile__name{ font-size:18px; font-weight:600; color:var(--ink); letter-spacing:-.02em; }
.bprofile__rating{ font-size:12.5px; color:var(--ink-soft); white-space:nowrap; }
.bprofile__rating b{ color:var(--ink); font-weight:600; }
.bprofile__sub{ font-size:13px; color:var(--ink-mute); }
.bprofile__reward{
  display:flex; align-items:center; gap:10px; margin-top:2px;
  background:rgba(44,138,114,.08); border:1px solid rgba(44,138,114,.2);
  border-radius:12px; padding:11px 13px;
}
.bprofile__reward svg{ color:var(--green); flex:none; }
.bprofile__reward strong{ font-size:13.5px; font-weight:600; color:var(--ink); display:block; }
.bprofile__reward span{ font-size:11.5px; color:var(--ink-soft); }
.bprofile__actions{ display:flex; gap:8px; margin-top:4px; }
.bprofile__btn{ flex:1; font-size:12.5px; padding:9px 12px; border-radius:10px; }
.bprofile__event{
  display:flex; align-items:center; gap:11px; margin-top:6px; padding-top:12px;
  border-top:1px solid rgba(36,28,18,.08); font-size:12.5px; color:var(--ink-soft);
}
.bprofile__date{
  width:38px; height:38px; flex:none; border-radius:10px; background:rgba(18,13,8,.9); color:#fff;
  display:flex; flex-direction:column; align-items:center; justify-content:center; line-height:1;
}
.bprofile__date b{ font-size:15px; font-weight:800; }
.bprofile__date i{ font-style:normal; font-size:8.5px; letter-spacing:.08em; color:var(--gold); margin-top:1px; }

/* ---------- Pricing card (dark, white card) ---------- */
.pricing{
  max-width:460px; margin-inline:auto; background:var(--paper);
  border-radius:24px; padding:clamp(28px,3vw,40px);
  box-shadow:var(--shadow-card); position:relative;
  margin-top:clamp(var(--space-lg),4vw,var(--space-xl));   /* heading block → card breathing room (DS §4) */
}
.pricing__badge{
  display:inline-flex; align-items:center; gap:7px;
  background:linear-gradient(135deg,rgba(214,168,99,.16),rgba(214,168,99,.08));
  border:1px solid rgba(214,168,99,.4); border-radius:999px;
  padding:6px 14px; font-size:11px; font-weight:700; letter-spacing:.1em;
  text-transform:uppercase; color:#a87f3f; margin-bottom:18px;
}
.pricing__plan{ font-size:24px; font-weight:700; color:var(--ink); letter-spacing:-.02em; }
.pricing__sub{ font-size:14px; color:var(--ink-soft); margin-top:3px; }
.pricing__price{
  margin-top:18px; font-size:clamp(34px,4.4vw,46px); font-weight:800;
  color:var(--green); letter-spacing:-.02em; line-height:1;
}
.pricing__price small{ font-size:15px; font-weight:600; color:var(--ink-mute); letter-spacing:0; }
.pricing__note{ font-size:12.5px; color:var(--ink-mute); margin-top:6px; }
.pricing .ticklist{ margin-top:24px; gap:13px; }
/* white card sits on a dark section — keep its feature text dark & legible */
.bsec.section--dark .pricing .ticklist strong,
.pricing .ticklist strong{ font-size:15px; font-weight:600; color:var(--ink); }
.pricing__cta{ width:100%; margin-top:26px; }

/* ---------- staggered reveal helper ---------- */
[data-reveal][data-d]{ transition-delay:calc(var(--d,0) * 1ms); }

/* =========================================================
   PAGE 2 — responsive
   ========================================================= */
@media (max-width:960px){
  .benes{ grid-template-columns:repeat(2,1fr); }
  .osteps{ grid-template-columns:repeat(2,1fr); }
  .bgrid{ grid-template-columns:1fr; }
  .bgrid--rev .bgrid__text{ order:1; }
  .bgrid--rev .bgrid__media{ order:2; }
}
@media (max-width:560px){
  .benes{ grid-template-columns:1fr; }
  .osteps{ grid-template-columns:1fr; }
  .scanner{ gap:16px; }
}

/* =========================================================
   INDIVIDUAL PAGE — new components
   Built on the same tokens as every other section.
   ========================================================= */

/* ---- Reward redeem card (Rewards section, on dark) ---- */
.redeem{
  position:relative;
  background:var(--paper); color:var(--ink);
  border-radius:var(--radius); padding:var(--space-lg);
  box-shadow:var(--shadow-card);
  max-width:400px; margin-inline:auto;
}
.redeem__cap{
  display:inline-block; margin:0 auto var(--space-md);
  font-size:11px; font-weight:700; letter-spacing:.16em; text-transform:uppercase;
  color:var(--green); background:#e2efe9; padding:6px 13px; border-radius:999px;
}
.redeem__qr{
  width:150px; height:150px; margin:0 auto var(--space-md);
  padding:12px; border-radius:16px; background:#fff;
  border:1px solid #ece2d1; box-shadow:0 12px 30px -18px rgba(50,32,10,.4);
}
.redeem__qr img{ width:100%; height:100%; object-fit:contain; display:block; image-rendering:pixelated; }
.redeem__title{
  font-family:var(--font-display); font-weight:700;
  font-size:20px; letter-spacing:-.02em; line-height:1.15;
  text-align:center; color:var(--ink); margin:0;
}
.redeem__sub{ text-align:center; font-size:13.5px; color:var(--ink-soft); margin-top:6px; }
.redeem__steps{ list-style:none; display:flex; flex-direction:column; gap:14px; margin:var(--space-lg) 0 0; padding:0; }
.redeem__steps li{ display:flex; gap:12px; align-items:center; font-size:14px; color:var(--ink-soft); line-height:1.4; }
.redeem__no{
  width:24px; height:24px; flex:none; border-radius:999px;
  background:#e2efe9; color:var(--green);
  font-size:12px; font-weight:800; display:grid; place-items:center;
}
.redeem__cta{ margin-top:var(--space-lg); width:100%; justify-content:center; }

/* ---- Offer cards (Exclusive offers, on dark) ---- */
.offers-stack{ display:flex; flex-direction:column; gap:var(--space-md); max-width:440px; margin-inline:auto; }
.ocard{
  background:var(--paper); color:var(--ink);
  border-radius:16px; padding:18px 18px 16px;
  box-shadow:var(--shadow-soft);
  transition:transform .3s var(--ease), box-shadow .3s var(--ease);
}
.ocard:hover{ transform:translateY(-4px); box-shadow:0 34px 70px -34px rgba(50,32,10,.6); }
.ocard__top{ display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:14px; }
.ocard__badge{
  display:inline-flex; align-items:center;
  font-size:10.5px; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  color:var(--green); background:#e2efe9; padding:5px 11px; border-radius:999px;
}
.ocard__exp{ font-size:12px; color:var(--ink-mute); white-space:nowrap; }
.ocard__main{ display:flex; align-items:center; gap:14px; }
.ocard__ic{
  width:46px; height:46px; flex:none; border-radius:13px;
  display:grid; place-items:center; color:var(--green);
  background:linear-gradient(150deg,#eef8f2,#dcefe6);
}
.ocard__txt{ flex:1; min-width:0; }
.ocard__t{ font-size:16px; font-weight:700; color:var(--ink); letter-spacing:-.01em; line-height:1.2; margin:0; }
.ocard__sub{ font-size:13px; color:var(--ink-soft); margin-top:3px; }
.ocard__claim{
  flex:none; display:inline-flex; align-items:center; gap:6px;
  font-family:inherit; font-size:13px; font-weight:700; color:var(--green);
  background:none; border:0; padding:8px 2px; cursor:pointer;
  transition:gap .25s var(--ease), color .2s;
}
.ocard__claim:hover{ gap:10px; color:var(--green-d); }

@media (max-width:560px){
  .redeem{ padding:var(--space-md); }
  .ocard__claim span{ display:none; }
}

/* =========================================================
   CHOOSE YOUR EXPERIENCE — two premium entry-point cards
   The central hub: two large photographic cards that route
   visitors into the Student or Business experience.
   Reuses tokens only (radius, shadow-card, ease-out, green/gold).
   ========================================================= */
.choose{
  background:
    radial-gradient(90% 72% at 18% -6%, rgba(44,138,114,.24) 0%, rgba(23,17,11,0) 55%),
    radial-gradient(82% 70% at 88% 108%, rgba(214,168,99,.18) 0%, rgba(23,17,11,0) 55%),
    var(--espresso);
}
.xcards{
  display:grid; grid-template-columns:repeat(2,1fr);
  gap:clamp(18px,2.4vw,30px);
  margin-top:clamp(var(--space-xl),5vw,var(--space-2xl));
}
.xcard{
  position:relative; isolation:isolate; overflow:hidden;
  border-radius:var(--radius);
  display:flex; flex-direction:column;
  background:#20180f;                       /* solid panel — text sits on this, not the photo */
  border:1px solid rgba(245,237,225,.09);
  box-shadow:var(--shadow-card);
  transition:transform .55s var(--ease-out), box-shadow .55s var(--ease-out), border-color .4s;
}
/* Photo occupies the top third only — calm, uncrowded, app-card style */
.xcard__media{ position:relative; height:clamp(190px,23vw,240px); overflow:hidden; flex:none; }
.xcard__media img{
  width:100%; height:100%; object-fit:cover;
  transform:scale(1.03);
  transition:transform 1.2s var(--ease-out);
}
/* Gentle fade so the photo settles into the panel instead of fighting the text */
.xcard__scrim{
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(20,24,20,0) 40%, rgba(32,24,15,.55) 82%, #20180f 100%);
}
.xcard__glow{
  position:absolute; left:0; right:0; bottom:-1px; height:70px; z-index:1;
  background:radial-gradient(80% 120% at 50% 100%, rgba(44,138,114,.5) 0%, rgba(44,138,114,0) 70%);
  opacity:.5; transition:opacity .5s var(--ease); pointer-events:none;
}
.xcard__glow--gold{ background:radial-gradient(80% 120% at 50% 100%, rgba(214,168,99,.46) 0%, rgba(214,168,99,0) 70%); }
.xcard__badge{
  position:absolute; top:16px; left:16px; z-index:3;
  display:inline-flex; align-items:center; gap:8px;
  padding:7px 13px; border-radius:999px;
  font-size:11.5px; font-weight:700; letter-spacing:.03em; color:var(--light);
  background:rgba(19,13,8,.52);
  -webkit-backdrop-filter:blur(12px) saturate(1.3); backdrop-filter:blur(12px) saturate(1.3);
  border:1px solid rgba(245,237,225,.2);
}
.xcard__badge svg{ width:15px; height:15px; color:var(--green-l); }
.xcard__badge--gold svg{ color:var(--gold); }
.xcard__body{
  position:relative; z-index:2; flex:1;
  display:flex; flex-direction:column;
  padding:clamp(24px,2.7vw,34px);
}
.xcard__title{
  font-family:var(--font-display);
  font-size:clamp(28px,3.2vw,38px); line-height:1; font-weight:700;
  letter-spacing:-.02em; text-transform:uppercase; color:var(--light); margin:0;
}
.xcard__desc{
  font-size:clamp(14.5px,1.3vw,16px); line-height:1.6;
  color:var(--light-mute); margin:13px 0 0; max-width:46ch;
}
.xcard__feats{ list-style:none; display:flex; flex-wrap:wrap; gap:8px; margin:18px 0 0; padding:0; }
.xcard__feats li{
  display:inline-flex; align-items:center; gap:8px;
  font-size:12px; font-weight:600; color:var(--light);
  padding:6px 12px; border-radius:999px;
  background:rgba(245,237,225,.07); border:1px solid rgba(245,237,225,.13);
}
.xcard__feats li::before{ content:""; width:6px; height:6px; border-radius:50%; background:var(--green-l); flex:none; }
.xcard__cta{ margin-top:auto; padding-top:clamp(20px,2.2vw,26px); gap:10px; align-self:flex-start; }
.xcard__cta svg{ width:18px; height:18px; transition:transform .3s var(--ease); }

@media (hover:hover) and (pointer:fine){
  .xcard:hover{
    transform:translateY(-8px);
    box-shadow:0 48px 92px -40px rgba(0,0,0,.72);
    border-color:rgba(44,138,114,.5);
  }
  .xcard:hover .xcard__media img{ transform:scale(1.08); }
  .xcard:hover .xcard__glow{ opacity:.85; }
  .xcard:hover .xcard__cta svg{ transform:translateX(4px); }
}

@media (max-width:820px){
  .xcards{ grid-template-columns:1fr; }
  .xcard__media{ height:200px; }
}
@media (prefers-reduced-motion:reduce){
  .xcard, .xcard__media img, .xcard__glow, .xcard__cta svg{ transition:none !important; }
}

/* =========================================================
   PROMO FRAME — media for the Student Offer & For Businesses
   info sections. A framed landing-page photo with a floating tag.
   ========================================================= */
/* Ambient depth — soft green/gold glow on the dark content sections */
#cards, #discover, #whatson{
  background:
    radial-gradient(75% 60% at 12% -6%, rgba(44,138,114,.16) 0%, rgba(23,17,11,0) 58%),
    radial-gradient(72% 62% at 92% 106%, rgba(214,168,99,.11) 0%, rgba(23,17,11,0) 58%),
    var(--espresso);
}

/* Discover on dark — head + chips readable on espresso (event cards stay light) */
.discover.section--dark .eyebrow{ color:var(--gold); }
.discover.section--dark .h2{ color:var(--light); }
.discover.section--dark .lead{ color:var(--light-mute); }
.discover.section--dark .discover__stats li{ color:var(--light-mute); }
.discover.section--dark .discover__stats strong{ color:var(--green-l); }
.discover.section--dark .chips__item{
  background:rgba(245,237,225,.06); border-color:rgba(245,237,225,.18);
  color:var(--light-mute); box-shadow:none;
}
.discover.section--dark .chips__item:hover{
  border-color:var(--green-l); color:var(--green-l); background:rgba(44,138,114,.14);
}
.discover.section--dark .chips__item.is-active{
  background:var(--green); color:#fff; border-color:var(--green);
}

/* Why / benefits on dark — frosted cards, light text */
.bsec.section--dark .bene{
  background:rgba(245,237,225,.055); border-color:rgba(245,237,225,.12);
}
.bsec.section--dark .bene:hover{
  background:rgba(245,237,225,.09); border-color:rgba(44,138,114,.45);
}
.bsec.section--dark .bene__t{ color:var(--light); }
.bsec.section--dark .bene__d{ color:var(--light-mute); }
.bsec.section--dark .bene__ic{
  background:rgba(44,138,114,.16); border-color:rgba(63,169,141,.3); color:var(--green-l);
}

.promo-frame{
  position:relative; border-radius:var(--radius); overflow:hidden;
  aspect-ratio:4/3; max-width:520px; margin-inline:auto;
  box-shadow:var(--shadow-card); border:1px solid rgba(245,237,225,.1);
  transition:transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.promo-frame img{
  width:100%; height:100%; object-fit:cover; display:block;
  transition:transform .8s var(--ease-out);
}
.promo-frame::after{
  content:""; position:absolute; inset:0; pointer-events:none;
  background:linear-gradient(180deg, rgba(13,9,5,0) 55%, rgba(13,9,5,.5) 100%);
}
.promo-frame__tag{
  position:absolute; left:16px; bottom:16px; z-index:2;
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 16px; border-radius:999px;
  font-size:13px; font-weight:700; letter-spacing:.01em; color:var(--light);
  background:rgba(19,13,8,.55);
  -webkit-backdrop-filter:blur(12px) saturate(1.3); backdrop-filter:blur(12px) saturate(1.3);
  border:1px solid rgba(245,237,225,.2);
}
.promo-frame__tag svg{ width:16px; height:16px; color:var(--green-l); flex:none; }
@media (hover:hover) and (pointer:fine){
  .bgrid__media:hover .promo-frame{ transform:translateY(-6px); box-shadow:0 44px 84px -38px rgba(0,0,0,.62); }
  .bgrid__media:hover .promo-frame img{ transform:scale(1.05); }
}
@media (prefers-reduced-motion:reduce){
  .promo-frame img{ transition:none !important; }
}

/* =========================================================
   AGENDA — daily-events card for the "What's on" section.
   A light app card that pops on the dark section (like Discover).
   ========================================================= */
.agenda{
  background:var(--paper); border-radius:var(--radius);
  box-shadow:var(--shadow-card); border:1px solid rgba(36,28,18,.06);
  padding:clamp(20px,2.2vw,26px); max-width:440px; margin-inline:auto;
}
.agenda__head{ display:flex; justify-content:space-between; align-items:baseline; margin-bottom:16px; }
.agenda__title{ font-family:var(--font-display); font-size:17px; font-weight:700; color:var(--ink); letter-spacing:-.01em; }
.agenda__sub{ font-size:12px; font-weight:700; color:var(--green); letter-spacing:.02em; }
.agenda__days{ display:flex; gap:7px; margin-bottom:16px; }
.agenda__day{
  flex:1; text-align:center; padding:8px 0; border-radius:12px;
  background:rgba(36,28,18,.04); border:1px solid transparent;
  transition:background .3s, border-color .3s;
}
.agenda__day small{ display:block; font-size:9.5px; letter-spacing:.08em; text-transform:uppercase; color:var(--ink-mute); margin-bottom:2px; }
.agenda__day b{ font-size:15px; font-weight:800; color:var(--ink); }
.agenda__day.is-active{ background:rgba(44,138,114,.12); border-color:rgba(44,138,114,.32); }
.agenda__day.is-active small, .agenda__day.is-active b{ color:var(--green); }
.agenda__list{ display:flex; flex-direction:column; gap:9px; }
.agenda__event{
  display:flex; align-items:center; gap:12px;
  padding:11px 12px; border-radius:14px;
  background:rgba(36,28,18,.03); border:1px solid rgba(36,28,18,.06);
  transition:background .3s, border-color .3s, transform .3s var(--ease-out);
}
.agenda__event:hover{ background:rgba(44,138,114,.06); border-color:rgba(44,138,114,.22); transform:translateX(2px); }
.agenda__time{ flex:none; width:48px; text-align:center; }
.agenda__time b{ display:block; font-size:13px; font-weight:800; color:var(--green); letter-spacing:-.01em; }
.agenda__time small{ font-size:10px; color:var(--ink-mute); }
.agenda__ev-body{ flex:1; min-width:0; display:flex; flex-direction:column; }
.agenda__ev-title{ font-size:14px; font-weight:700; color:var(--ink); line-height:1.25; }
.agenda__ev-place{ font-size:12px; color:var(--ink-soft); margin-top:2px; }
.agenda__tag{
  flex:none; font-size:10.5px; font-weight:700; letter-spacing:.02em;
  color:var(--green); background:rgba(44,138,114,.1);
  border:1px solid rgba(44,138,114,.22); border-radius:999px; padding:4px 9px;
}

/* =========================================================
   CTA store badges — download row on the final dark section
   ========================================================= */
.claim__stores{ display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-top:clamp(26px,3vw,32px); }

/* =========================================================
   EVENTS LIST — grouped daily agenda ("What's on")
   Light cards on the cream-alt section, grouped by day.
   ========================================================= */
.evlist{ max-width:640px; margin:var(--head-flow) auto 0; }
.evlist__days{ display:flex; gap:clamp(6px,1vw,10px); margin-bottom:clamp(20px,2.5vw,30px); }
.evday-chip{
  position:relative; flex:1; text-align:center; padding:11px 0; border-radius:16px;
  background:var(--paper); border:1px solid rgba(36,28,18,.08);
  box-shadow:0 2px 10px -6px rgba(50,32,10,.2);
}
.evday-chip small{ display:block; font-size:11px; color:var(--ink-mute); margin-bottom:1px; }
.evday-chip b{ font-size:18px; font-weight:800; color:var(--ink); letter-spacing:-.01em; }
.evday-chip.is-active{ background:rgba(44,138,114,.1); border-color:rgba(44,138,114,.32); }
.evday-chip.is-active b{ color:var(--green); }
.evday-chip.is-dim{ background:transparent; border-color:rgba(36,28,18,.08); box-shadow:none; opacity:.5; }
.evday-chip__dot{ position:absolute; top:8px; right:11px; width:7px; height:7px; border-radius:50%; background:#241c12; }
.evday-chip__dot--green{ background:var(--green); }

.evgroup{ margin-top:20px; }
.evgroup + .evgroup{ margin-top:24px; padding-top:24px; border-top:1.5px dashed rgba(44,138,114,.32); }
.evgroup__label{ font-size:15px; font-weight:800; color:var(--ink); margin-bottom:14px; letter-spacing:-.01em; }
.evgroup__label span{ color:var(--green); }

.evitem{ margin-bottom:14px; }
.evitem:last-child{ margin-bottom:0; }
.evitem__meta{
  display:flex; justify-content:space-between; align-items:center; gap:12px;
  padding:8px 14px; margin-bottom:9px;
  background:rgba(36,28,18,.04); border-radius:12px;
}
.evitem__time{ font-size:13.5px; font-weight:700; color:var(--green); font-variant-numeric:tabular-nums; }
.evitem__tag{ font-size:12.5px; color:var(--ink-soft); white-space:nowrap; }
.evcard{
  display:flex; align-items:center; gap:14px;
  background:var(--paper); border:1px solid rgba(36,28,18,.07);
  border-radius:18px; padding:12px; box-shadow:0 8px 26px -16px rgba(50,32,10,.28);
  transition:transform .35s var(--ease-out), box-shadow .35s, border-color .3s;
}
.evcard:hover{ transform:translateY(-3px); box-shadow:0 20px 44px -22px rgba(50,32,10,.4); border-color:rgba(44,138,114,.25); }
.evcard__thumb{ width:66px; height:66px; border-radius:13px; object-fit:cover; flex:none; }
.evcard__body{ min-width:0; }
.evcard__title{ font-size:16px; font-weight:700; color:var(--ink); line-height:1.25; }
.evcard__place{ display:flex; align-items:center; gap:5px; font-size:13px; color:var(--ink-soft); margin-top:5px; }
.evcard__place svg{ width:14px; height:14px; color:var(--green); flex:none; }

.evlist__cta{ text-align:center; margin-top:clamp(28px,3.5vw,44px); }

/* =========================================================
   Alternation support — cream CTA + dark FAQ + cream store badges
   ========================================================= */
/* CTA on cream (soft green glow instead of espresso) */
.claim.section--cream{
  background:radial-gradient(85% 120% at 50% 0%, rgba(44,138,114,.12) 0%, rgba(245,237,225,0) 55%), var(--cream);
}
/* Store badges when they sit on a cream section (CTA) */
.section--cream .store{ border-color:rgba(36,28,18,.16); }
.section--cream .store:hover{ background:rgba(36,28,18,.05); border-color:rgba(36,28,18,.32); transform:translateY(-2px); }
.section--cream .store__ic{ color:var(--ink); }
.section--cream .store__txt small{ color:var(--ink-mute); }
.section--cream .store__txt b{ color:var(--ink); }

/* FAQ on dark — frosted items, light text */
.faq.section--dark .faq__title{ color:var(--light); }
.faq.section--dark .faq__item{ background:rgba(245,237,225,.05); border-color:rgba(245,237,225,.12); }
.faq.section--dark .faq__item:not([open]):hover{ background:rgba(245,237,225,.09); border-color:rgba(245,237,225,.2); }
.faq.section--dark .faq__item[open]{ background:rgba(245,237,225,.03); border-color:var(--green); }
.faq.section--dark .faq__item summary > span:not(.faq__num),
.faq.section--dark .faq__item[open] summary > span:not(.faq__num){ color:var(--light); }
.faq.section--dark .faq__a p{ color:var(--light-mute); }

/* Agenda event thumbnail (Events app-card mockup) */
.agenda__thumb{ width:42px; height:42px; border-radius:11px; object-fit:cover; flex:none; }
