/* =====================================================
   BAMBŪ DESSERTS & DRINKS — STYLESHEET
   Clean, minimal, professional — all real assets
   ===================================================== */

/* --- RESET & BASE --------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-900: #1a3a22;
  --green-800: #2c5a38;
  --green-700: #3A7D44;
  --green-500: #52a660;
  --green-300: #8fd49a;
  --green-100: #eaf4ec;
  --green-50:  #f4faf5;
  --white:     #ffffff;
  --gray-50:   #f9fafb;
  --gray-100:  #f3f4f6;
  --gray-200:  #e5e7eb;
  --gray-400:  #9ca3af;
  --gray-600:  #4b5563;
  --gray-700:  #374151;
  --gray-800:  #1f2937;
  --gray-900:  #111827;
  --cream:     #faf8f3;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif:'Playfair Display', Georgia, serif;
  --container: 1180px;
  --pad-x:     clamp(20px, 4vw, 48px);
  --section-y: clamp(64px, 8vw, 110px);
  --r-sm: 8px; --r-md: 14px; --r-lg: 20px; --r-xl: 28px; --r-full: 9999px;
  --sh-sm: 0 1px 4px rgba(0,0,0,.07);
  --sh-md: 0 4px 16px rgba(0,0,0,.08);
  --sh-lg: 0 12px 40px rgba(0,0,0,.1);
  --sh-xl: 0 24px 64px rgba(0,0,0,.12);
  --ease: cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); font-size: 16px; line-height: 1.7; color: var(--gray-800); background: var(--white); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
p { margin-bottom: 14px; color: var(--gray-600); font-size: 17px; line-height: 1.8; }
p:last-child { margin-bottom: 0; }
p strong { color: var(--gray-900); }
p em { color: var(--green-700); }

/* --- UTILITIES ------------------------------------ */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--pad-x); }

.section-eyebrow {
  display: inline-block; font-size: 11.5px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--green-700); background: var(--green-100);
  padding: 4px 12px; border-radius: var(--r-full); margin-bottom: 14px;
}
.section-title {
  font-size: clamp(30px, 3.8vw, 52px); font-weight: 800; line-height: 1.12;
  letter-spacing: -.025em; color: var(--gray-900); margin-bottom: 20px;
}
.section-title em { font-family: var(--font-serif); font-style: italic; color: var(--green-700); }
.section-desc { font-size: 17px; color: var(--gray-600); max-width: 560px; line-height: 1.8; }
.section-header { text-align: center; margin-bottom: clamp(40px, 6vw, 72px); }
.section-header .section-desc { margin: 0 auto; }
.bg-cream { background: var(--cream); }

/* --- BUTTONS -------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--r-full);
  font-size: 15px; font-weight: 600; letter-spacing: .01em;
  transition: all .2s var(--ease); white-space: nowrap;
}
.btn--sm  { padding: 8px 18px; font-size: 13.5px; }
.btn--lg  { padding: 16px 32px; font-size: 16px; }
.btn--primary { background: var(--green-700); color: var(--white); box-shadow: 0 2px 10px rgba(58,125,68,.3); }
.btn--primary:hover { background: var(--green-800); transform: translateY(-1px); box-shadow: 0 4px 18px rgba(58,125,68,.4); }
.btn--white { background: var(--white); color: var(--green-700); font-weight: 700; box-shadow: var(--sh-md); }
.btn--white:hover { box-shadow: var(--sh-lg); transform: translateY(-1px); }
.btn--outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.55); }
.btn--outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

/* --- NAV ------------------------------------------ */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background .3s, box-shadow .3s; }
.nav.scrolled { background: rgba(255,255,255,.96); backdrop-filter: blur(16px); box-shadow: 0 1px 0 rgba(0,0,0,.07); }
.nav__inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad-x); height: 68px; display: flex; align-items: center; gap: 28px; }
.nav__logo { flex-shrink: 0; }
.nav__logo-img { height: 32px; width: auto; filter: brightness(0) invert(1); transition: filter .3s; }
.nav.scrolled .nav__logo-img { filter: none; }
.nav__links { display: flex; gap: 4px; margin-left: auto; }
.nav__links a { padding: 7px 14px; border-radius: var(--r-full); font-size: 14px; font-weight: 500; color: rgba(255,255,255,.85); transition: all .2s; }
.nav.scrolled .nav__links a { color: var(--gray-700); }
.nav__links a:hover { background: rgba(255,255,255,.15); color: var(--white); }
.nav.scrolled .nav__links a:hover { background: var(--green-50); color: var(--green-700); }
.nav__cta { margin-left: 8px; }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto; }
.nav__hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all .2s; }
.nav.scrolled .nav__hamburger span { background: var(--gray-800); }
.nav__mobile { display: none; flex-direction: column; padding: 0 var(--pad-x) 20px; background: rgba(255,255,255,.97); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.nav__mobile.open { display: flex; }
.nav__mobile a { padding: 13px 0; font-size: 16px; font-weight: 500; color: var(--gray-800); border-bottom: 1px solid var(--gray-100); }
.nav__mobile .btn { margin-top: 14px; justify-content: center; }

/* --- HERO ----------------------------------------- */
.hero { position: relative; min-height: 100dvh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; }
.hero__bg-img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; transform-origin: center; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(150deg, rgba(20,50,28,.82) 0%, rgba(20,50,28,.55) 55%, rgba(20,50,28,.35) 100%); }
.hero__content { position: relative; z-index: 2; max-width: var(--container); width: 100%; margin: 0 auto; padding: 110px var(--pad-x) 40px; }
.hero__eyebrow { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--green-300); background: rgba(143,212,154,.12); border: 1px solid rgba(143,212,154,.3); padding: 5px 14px; border-radius: var(--r-full); margin-bottom: 22px; }
.hero__title { font-size: clamp(48px, 8vw, 96px); font-weight: 900; line-height: 1.0; letter-spacing: -.04em; color: var(--white); margin-bottom: 20px; }
.hero__title em { font-family: var(--font-serif); font-style: italic; color: var(--green-300); }
.hero__sub { font-size: clamp(16px, 2vw, 19px); color: rgba(255,255,255,.8); max-width: 500px; line-height: 1.75; margin-bottom: 32px; }
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__stats { position: relative; z-index: 2; width: 100%; margin-top: auto; padding: 32px 0; }
.hero__stats-grid { display: flex; gap: 0; align-items: center; flex-wrap: wrap; }
.hero__stat { display: flex; flex-direction: column; padding: 0 32px; border-right: 1px solid rgba(255,255,255,.2); }
.hero__stat:last-child { border-right: none; }
.hero__num { font-size: 30px; font-weight: 900; color: var(--white); line-height: 1; letter-spacing: -.03em; }
.hero__label { font-size: 11px; color: rgba(255,255,255,.55); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-top: 3px; }

/* --- MARQUEE -------------------------------------- */
.marquee { background: var(--green-700); padding: 13px 0; overflow: hidden; }
.marquee__track { display: inline-flex; gap: 18px; animation: marquee 32s linear infinite; white-space: nowrap; }
.marquee__track span { font-size: 13px; font-weight: 500; color: rgba(255,255,255,.85); letter-spacing: .05em; text-transform: uppercase; }
.marquee__track .dot { color: rgba(255,255,255,.35) !important; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* --- CHÈ SECTION ---------------------------------- */
.che-section { padding: var(--section-y) 0 0; }
.che-section__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; margin-bottom: var(--section-y); }
.che-section__word-img { width: 100%; border-radius: var(--r-xl); box-shadow: var(--sh-xl); object-fit: cover; max-height: 520px; }
.che-section__text p { font-size: 17px; color: var(--gray-600); line-height: 1.8; margin-bottom: 16px; }
.che-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.che-pills span { font-size: 13px; font-weight: 600; color: var(--green-700); background: var(--green-100); padding: 5px 13px; border-radius: var(--r-full); }

/* Drink Gallery */
.drink-gallery { background: var(--gray-900); padding: var(--section-y) 0; }
.drink-gallery__inner { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 8px; padding: 0 var(--pad-x); max-width: var(--container); margin: 0 auto 32px; }
.drink-gallery__inner img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--r-md); transition: transform .3s; cursor: pointer; }
.drink-gallery__inner img:hover { transform: scale(1.04); }
.drink-gallery__cta { text-align: center; }
.drink-gallery__cta p { color: rgba(255,255,255,.6); font-size: 15px; margin-bottom: 16px; }

/* --- CATEGORY SECTIONS (Coffee, Teas) ------------ */
.category-section { padding: var(--section-y) 0; }
.category-section__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.category-section__inner--reverse { direction: rtl; }
.category-section__inner--reverse > * { direction: ltr; }
.category-section__img { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-xl); }
.category-section__img img { width: 100%; height: clamp(300px, 45vw, 520px); object-fit: cover; }
.feature-list { margin-top: 20px; }
.feature-list li { padding: 8px 0; border-bottom: 1px solid var(--gray-100); font-size: 15px; color: var(--gray-700); }
.feature-list li::before { content: "→ "; color: var(--green-700); font-weight: 700; }

/* --- SMOOTHIES ------------------------------------ */
.smoothies-section { padding: var(--section-y) 0; background: var(--gray-50); }
.smoothies-section__header { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; margin-bottom: clamp(40px, 6vw, 64px); }
.smoothies-section__word-img { width: 100%; border-radius: var(--r-xl); box-shadow: var(--sh-lg); object-fit: cover; max-height: 400px; }
.smoothies-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; margin-bottom: 56px; }
.smoothie-card { background: var(--white); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--gray-100); box-shadow: var(--sh-sm); transition: transform .25s, box-shadow .25s; }
.smoothie-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.smoothie-card__img { aspect-ratio: 1; background: var(--green-50); overflow: hidden; display: flex; align-items: center; justify-content: center; padding: 16px; }
.smoothie-card__img img { width: 100%; height: 100%; object-fit: contain; transition: transform .3s; }
.smoothie-card:hover .smoothie-card__img img { transform: scale(1.06); }
.smoothie-card h3 { font-size: 15px; font-weight: 700; color: var(--gray-900); padding: 14px 16px 4px; }
.smoothie-card p { font-size: 13px; color: var(--gray-500, #6b7280); padding: 0 16px 16px; margin: 0; line-height: 1.55; }
.smoothie-card--cta { background: var(--green-50); border: 2px dashed var(--green-300); display: flex; align-items: center; justify-content: center; min-height: 240px; }
.smoothie-card__cta { text-align: center; padding: 24px; }
.smoothie-card__cta span { font-size: 36px; display: block; margin-bottom: 10px; }
.smoothie-card__cta h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; padding: 0; }
.smoothie-card__cta p { font-size: 13px; color: var(--gray-600); margin-bottom: 14px; padding: 0; }

/* Ingredients Strip */
.ingredients-strip { padding-top: 20px; }
.ingredients-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.ingredient { display: flex; flex-direction: column; align-items: center; gap: 6px; width: 72px; }
.ingredient img { width: 56px; height: 56px; object-fit: contain; transition: transform .25s; }
.ingredient:hover img { transform: scale(1.12) rotate(-4deg); }
.ingredient span { font-size: 11px; font-weight: 600; color: var(--gray-600); text-align: center; letter-spacing: .02em; }

/* --- YONAMI --------------------------------------- */
.yonami-section { padding: var(--section-y) 0; background: var(--green-900); }
.yonami-section__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.yonami-section__img { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-xl); }
.yonami-section__img img { width: 100%; height: clamp(360px, 50vw, 580px); object-fit: cover; object-position: top; }
.yonami-section__text .section-eyebrow { background: rgba(143,212,154,.15); color: var(--green-300); border: 1px solid rgba(143,212,154,.25); }
.yonami-section__text .section-title { color: var(--white); }
.yonami-section__text p { color: rgba(255,255,255,.75); }

/* --- SUMMER DELIGHT FEATURE ----------------------- */
.feature-drink { position: relative; overflow: hidden; }
.feature-drink__img { width: 100%; max-height: 600px; object-fit: cover; object-position: center; display: block; }
.feature-drink__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,50,28,.82) 0%, rgba(20,50,28,.4) 60%, transparent 100%); display: flex; align-items: center; }
.feature-drink__content { max-width: var(--container); margin: 0 auto; padding: 60px var(--pad-x); }
.feature-drink__content h2 { font-size: clamp(36px, 5vw, 64px); font-weight: 900; color: var(--white); letter-spacing: -.03em; margin-bottom: 14px; }
.feature-drink__content p { color: rgba(255,255,255,.8); font-size: 17px; max-width: 400px; margin-bottom: 24px; }

/* --- ABOUT ---------------------------------------- */
.about { padding: var(--section-y) 0; }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.about__quote { font-family: var(--font-serif); font-style: italic; font-size: 24px; color: var(--green-700); border-left: 4px solid var(--green-300); padding-left: 20px; margin-top: 24px; line-height: 1.5; }
.about__photo-main { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-xl); margin-bottom: 10px; }
.about__photo-main img { width: 100%; height: clamp(250px, 35vw, 380px); object-fit: cover; }
.about__photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.about__photo-grid img { width: 100%; height: 150px; object-fit: cover; border-radius: var(--r-md); box-shadow: var(--sh-sm); }

/* --- VALUES --------------------------------------- */
.values { padding: var(--section-y) 0; background: var(--green-900); }
.values__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.values__item { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: var(--r-lg); padding: 28px 22px; text-align: center; transition: background .2s; }
.values__item:hover { background: rgba(255,255,255,.09); }
.values__char { width: 80px; height: 80px; object-fit: contain; margin: 0 auto 16px; }
.values__item h3 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.values__item p { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.6; margin: 0; }

/* --- LOCATIONS ------------------------------------ */
.locations { padding: var(--section-y) 0; background: var(--gray-50); }
.locations__regions { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-bottom: 40px; }
.locations__region h4 { font-size: 13px; font-weight: 700; color: var(--green-700); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; padding-bottom: 8px; border-bottom: 2px solid var(--green-100); }
.locations__region li { font-size: 14px; color: var(--gray-700); padding: 5px 0; border-bottom: 1px solid var(--gray-100); display: flex; align-items: center; gap: 6px; }
.locations__region li em { color: var(--gray-400); font-style: normal; }
.tag-original { font-size: 10px; font-weight: 700; background: var(--green-700); color: var(--white); padding: 2px 7px; border-radius: var(--r-full); letter-spacing: .04em; }
.locations__cta-row { text-align: center; }

/* --- FRANCHISE ------------------------------------ */
.franchise { padding: var(--section-y) 0; background: var(--cream); }
.franchise__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.franchise__text p { font-size: 17px; color: var(--gray-600); line-height: 1.8; margin-bottom: 20px; }
.franchise__points { display: flex; flex-direction: column; gap: 10px; margin-bottom: 30px; }
.fp { display: flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 500; color: var(--gray-800); }
.franchise__img-col { position: relative; }
.franchise__img-col img { width: 100%; height: clamp(360px, 50vw, 540px); object-fit: cover; border-radius: var(--r-xl); box-shadow: var(--sh-xl); }
.franchise__badge { position: absolute; top: 24px; right: -14px; background: var(--green-700); color: var(--white); border-radius: var(--r-lg); padding: 16px 20px; text-align: center; box-shadow: var(--sh-md); }
.franchise__badge-n { display: block; font-size: 40px; font-weight: 900; line-height: 1; letter-spacing: -.03em; }
.franchise__badge-t { display: block; font-size: 10.5px; opacity: .85; text-transform: uppercase; letter-spacing: .06em; font-weight: 600; line-height: 1.45; margin-top: 4px; }

/* --- CTA BANNER ----------------------------------- */
.cta-banner { position: relative; overflow: hidden; }
.cta-banner__bg { position: absolute; inset: 0; }
.cta-banner__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,58,34,.9) 0%, rgba(26,58,34,.75) 100%); }
.cta-banner .container { position: relative; z-index: 2; }
.cta-banner__inner { text-align: center; max-width: 640px; margin: 0 auto; padding: clamp(64px, 8vw, 110px) 0; }
.cta-banner__inner h2 { font-size: clamp(32px, 4.5vw, 56px); font-weight: 800; color: var(--white); letter-spacing: -.03em; margin-bottom: 16px; }
.cta-banner__inner p { font-size: 17px; color: rgba(255,255,255,.8); line-height: 1.75; margin-bottom: 32px; }
.cta-banner__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* --- FOOTER --------------------------------------- */
.footer { background: var(--gray-900); padding: clamp(48px, 6vw, 80px) 0 24px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(40px, 6vw, 80px); padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: 24px; }
.footer__logo { height: 28px; width: auto; filter: brightness(0) invert(1); margin-bottom: 12px; }
.footer__tagline { font-family: var(--font-serif); font-style: italic; font-size: 18px; color: var(--green-300); margin-bottom: 8px !important; }
.footer__desc { font-size: 13.5px; color: rgba(255,255,255,.45); max-width: 300px; line-height: 1.7; margin-bottom: 20px !important; }
.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 38px; height: 38px; border-radius: var(--r-full); background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6); transition: all .2s; }
.footer__social a:hover { background: var(--green-700); color: var(--white); }
.footer__nav { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.footer__col h4 { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 12px; }
.footer__col a { display: block; font-size: 13.5px; color: rgba(255,255,255,.6); padding: 4px 0; transition: color .15s; }
.footer__col a:hover { color: var(--white); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 8px; flex-wrap: wrap; }
.footer__bottom p { font-size: 12.5px; color: rgba(255,255,255,.28); }

/* --- SCROLL REVEAL -------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .65s cubic-bezier(0,0,.2,1), transform .65s cubic-bezier(0,0,.2,1); }
[data-reveal].revealed { opacity: 1; transform: none; }
[data-reveal-d="1"] { transition-delay: .1s; }
[data-reveal-d="2"] { transition-delay: .2s; }
[data-reveal-d="3"] { transition-delay: .3s; }

/* --- RESPONSIVE ----------------------------------- */
@media (max-width: 1024px) {
  .values__grid { grid-template-columns: repeat(2,1fr); }
  .locations__regions { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .hero__stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
  .hero__stat { padding: 14px 16px; border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }
  .hero__stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.12); }
  .che-section__grid, .category-section__inner, .about__grid, .yonami-section__grid, .franchise__grid { grid-template-columns: 1fr; }
  .category-section__inner--reverse { direction: ltr; }
  .smoothies-section__header { grid-template-columns: 1fr; }
  .franchise__badge { right: 0; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .values__grid { grid-template-columns: 1fr 1fr; }
  .locations__regions { grid-template-columns: 1fr 1fr; }
  .footer__nav { grid-template-columns: 1fr 1fr; }
  .smoothies-grid { grid-template-columns: 1fr 1fr; }
  .drink-gallery__inner { grid-template-columns: repeat(3,1fr); }
  .cta-banner__btns { flex-direction: column; align-items: center; }
}

/* Lightbox for drink gallery */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.92); z-index: 1000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .25s; }
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: var(--r-md); }
.lightbox__close { position: absolute; top: 20px; right: 24px; color: var(--white); font-size: 32px; cursor: pointer; line-height: 1; background: none; border: none; opacity: .7; }
.lightbox__close:hover { opacity: 1; }
