/* =========================================================
   ATELJE PARFUMI — Vitoweb demo
   Design tokens fiksohen lokalisht; ndryshohen vetëm këtu.
   ========================================================= */

:root {
  --warm: #F2EDE2;
  --warm-2: #E8E0CE;
  --ink: #0A0908;
  --ink-2: #1A1816;
  --accent: #927B5A;        /* warm gold/cocoa i butë (në stil aesthetics + fashion) */
  --accent-soft: #B49E78;   /* gold më i hapur për hover */
  --gold: #927B5A;          /* alias për qartësi */
  --line: rgba(10, 9, 8, 0.14);
  --mute: rgba(10, 9, 8, 0.55);

  /* dinamike, ndryshohet gjatë choreo */
  --bg: var(--warm);
  --fg: var(--ink);

  --display: "Bodoni Moda", "Didot", "Bodoni 72", Georgia, serif;
  --body: "Bricolage Grotesque", system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;

  /* dinamik nga JS — gjysmë-gjerësia e shishes në piksela (default fallback) */
  --bottle-half: 13vw;
  --bottle-breath: 1.6vw;

  --step-1: clamp(0.78rem, 0.74rem + 0.2vw, 0.88rem);
  --step-0: clamp(0.95rem, 0.9rem + 0.3vw, 1.05rem);
  --step-2: clamp(1.15rem, 1rem + 0.6vw, 1.35rem);
  --step-3: clamp(1.6rem, 1.3rem + 1.6vw, 2.6rem);
  --display-1: clamp(2.8rem, 1.8rem + 5.5vw, 7rem);
  --display-2: clamp(2.4rem, 1.6rem + 4vw, 5.5rem);

  --gutter: clamp(1.25rem, 4vw, 3.25rem);
  --section-y: clamp(4.5rem, 8vw, 9rem);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-quint: cubic-bezier(0.83, 0, 0.17, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--fg);
  font-size: var(--step-0);
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  transition: background-color 0.6s var(--ease-out), color 0.6s var(--ease-out);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ----------------- COMMON ----------------- */
.eyebrow {
  font-family: var(--mono);
  font-size: var(--step-1);
  letter-spacing: 0.06em;
  text-transform: lowercase;
  color: var(--fg);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  margin-bottom: 1.25rem;
  opacity: 0.78;
}
.eyebrow--light { color: var(--warm); opacity: 0.85; }
.eyebrow__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  flex: 0 0 auto;
}

.section__title {
  font-family: var(--display);
  font-size: var(--display-2);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.01em;
  padding-bottom: 0.14em;
}
.section__title br { content: ""; display: block; margin-bottom: 0.05em; }

/* ----------------- NAV ----------------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto;  /* brand-i hequr globalisht */
  align-items: center;
  gap: 2rem;
  padding: 0.85rem var(--gutter);
  color: var(--warm);
  background: rgba(10, 9, 8, 0);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  transition: background 0.3s var(--ease-out), backdrop-filter 0.3s, color 0.3s;
}
.nav.is-scrolled {
  background: rgba(242, 237, 226, 0.92);
  color: var(--ink);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  border-bottom: 1px solid var(--line);
}

.nav__brand { display: none !important; }
.nav__brand-old { display: inline-flex; align-items: center; gap: 0.55rem; }
.nav__mark {
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  min-width: 38px; height: 32px;
  padding: 0 6px 2px;
  border: 1px solid currentColor;
  display: inline-grid; place-items: center;
  line-height: 1;
}
.nav__name {
  font-family: var(--mono);
  font-size: var(--step-1);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav__name--short { display: none; }

.nav__links {
  display: flex;
  gap: 1.8rem;
  justify-self: start;  /* nav links majtas që cart-i rri djathtas */
  font-family: var(--mono);
  font-size: var(--step-1);
  letter-spacing: 0.04em;
}
.nav__links a { opacity: 0.85; transition: opacity 0.2s; }
.nav__links a:hover { opacity: 1; }
.nav__cart { justify-self: end; }

@media (max-width: 780px) {
  .nav__links { display: none; }
  .nav { padding: 0.85rem 1rem; gap: 0.8rem; }
}

/* ----------------- HERO (editorial bottle + text-behind) ----------------- */
.hero {
  min-height: 100dvh;
  position: relative;
  overflow: hidden;
  background: #0a0908;
  color: var(--warm);
}
.hero__bg-wrap { display: block; position: absolute; inset: 0; z-index: 1; }
.hero__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
/* Layer i tekstit (LUXURY / PERFUMES) — fade-in opacity-only sipas memory feedback_no_translate_in_reveals */
.hero__bg-text {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  animation: heroTextReveal 1.8s var(--ease-out) 0.6s forwards;
  display: none; /* hidden by default — vetëm në desktop e shfaqim */
}
@media (min-width: 721px) {
  .hero__bg-text { display: block; }
}
@keyframes heroTextReveal {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__bg-text { animation: none; opacity: 1; }
}

/* Tipografi pranë shishes — Cinzel (high-contrast elegant serif në stilin Caltoria) */
.hero__type {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  font-family: "Cinzel", "Bodoni Moda", "Trajan Pro", "Didot", Georgia, serif;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 7vw, 8rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--warm);
}
.hero__word {
  position: absolute;
  top: 50%;
  display: inline-block;
  white-space: nowrap;          /* KRITIKE: parandalon wrap (S binte poshtë) */
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.6);
  transform: translateY(-50%);
  opacity: 1;
}
/* Karaktere individuale për reveal scatter→assemble */
.hero__word .char {
  display: inline-block;
  transform-origin: center center;
  will-change: transform, opacity;
}
/* Fallback animation nëse JS/GSAP nuk ngarkohet */
.hero__word.no-js-fallback {
  opacity: 0;
  filter: blur(6px);
  animation: heroWordIn 1.3s var(--ease-out) forwards;
}
/* RIGHT edge i fjalës majtas = qendër − (gjysmë-shishe + breathing) */
.hero__word--left {
  right: calc(50% + var(--bottle-half) + var(--bottle-breath));
  animation-delay: 0.3s;
}
.hero__word--right {
  left: calc(50% + var(--bottle-half) + var(--bottle-breath));
  animation-delay: 0.6s;
}
@keyframes heroWordIn {
  to { opacity: 1; filter: blur(0); }
}

.hero__content {
  position: absolute;
  left: 0; right: 0;
  bottom: clamp(2.5rem, 5vw, 4rem);
  z-index: 3;
  padding: 0 var(--gutter);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.hero__sub {
  max-width: 36ch;
  font-size: var(--step-2);
  line-height: 1.5;
  color: rgba(242, 237, 226, 0.82);
  opacity: 0;
  animation: heroFadeUp 1s var(--ease-out) 1s forwards;
}
.hero__cta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  opacity: 0;
  animation: heroFadeUp 1s var(--ease-out) 1.15s forwards;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.btn--primary-light {
  background: var(--warm);
  color: var(--ink);
}
.btn--primary-light:hover { background: var(--gold); color: var(--ink); }

/* DESKTOP: teksti është brenda imazhit hero-desktop.png (Perfumes / Luxury),
   prandaj fshijmë overlay-in JS .hero__type që po krijonte mospërputhje në breakpoint-e. */
@media (min-width: 721px) {
  .hero__type { display: none !important; }
  .hero__content { max-width: 60ch; left: 50%; right: auto; transform: translateX(-50%); }
}

/* MOBILE: shisha plotë lart pa shirit të zi, fjalët stacked poshtë, pastaj CTA */
@media (max-width: 720px) {
  .hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    padding: 0 0 2.5rem;  /* HEQ shiritin e zi sipër */
  }
  .hero__bg-wrap {
    position: relative;
    height: clamp(58vh, 62vh, 68vh);
    min-height: 420px;
    flex-shrink: 0;
  }
  .hero__type {
    position: relative;
    inset: auto;
    margin-top: 1.2rem;
    padding: 0 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    line-height: 0.92;
    font-size: clamp(3rem, 16vw, 5.5rem);
  }
  /* mbi mobile, fjalët janë static (jo absolute), pa offset margin */
  .hero__word {
    position: static !important;
    display: block;
    transform: none !important;
    margin: 0 !important;
    right: auto !important;
    left: auto !important;
    top: auto !important;
  }
  .hero__content {
    position: relative;
    bottom: auto;
    margin-top: 1.5rem;
    padding: 0 1.25rem;
    gap: 0;
  }
  .hero__cta { width: 100%; flex-wrap: nowrap; }
  .hero__cta .btn { flex: 1; }
}
@media (max-width: 420px) {
  .hero__cta .btn { padding: 0.85rem 0.5rem; font-size: 0.68rem; }
}

.btn--ghost-light {
  border: 1px solid var(--warm);
  color: var(--warm);
  background: transparent;
}
.btn--ghost-light:hover { background: var(--warm); color: var(--ink); }

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.btn {
  font-family: var(--mono);
  font-size: var(--step-1);
  letter-spacing: 0.04em;
  padding: 0.9rem 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s var(--ease-out), background 0.3s, color 0.3s;
  min-height: 44px;
}
.btn--primary { background: var(--ink); color: var(--warm); }
.btn--primary:hover { background: var(--accent); }
.btn--ghost { border: 1px solid var(--ink); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--warm); }

/* (hero__meta hequr — pa stat row sipas memory feedback_no_stat_rows) */

/* (hero__stage hequr — hero tani është full-image, jo split layout) */
/* (hero__caption hequr — pjesë e layout-it të vjetër) */

.hero__scroll {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(3.5rem, 7vw, 5.5rem);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--mono);
  font-size: var(--step-1);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242, 237, 226, 0.7);
}
.hero__scroll i {
  display: inline-block;
  width: 32px; height: 1px;
  background: rgba(242, 237, 226, 0.45);
  position: relative;
  overflow: hidden;
}
.hero__scroll i::after {
  content: "";
  position: absolute; left: -32px; top: 0;
  width: 32px; height: 100%;
  background: var(--warm);
  animation: scroll-cue 2.2s var(--ease-out) infinite;
}
@keyframes scroll-cue {
  0% { transform: translateX(0); }
  100% { transform: translateX(64px); }
}

/* hero scroll cue: hide on mobile (hero stack-len është më e shkurtër) */
@media (max-width: 720px) { .hero__scroll { display: none; } }

/* ----------------- PHASES (tabs editorial, pa scroll-pinning) ----------------- */
.phases {
  padding: var(--section-y) var(--gutter);
  background: var(--ink);
  color: var(--warm);
}
.phases__head {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 36ch;
}
.phases__head .eyebrow { color: var(--warm); opacity: 0.7; }
.phases__head .eyebrow__dot { background: var(--gold); }
.phases__head .section__title { color: var(--warm); }

.phases__panel {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: stretch;
}

.phases__photos {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ink-2);
}
.phases__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.55s var(--ease-out);
  filter: contrast(1.05) saturate(0.9) brightness(0.92);
}
.phases__photo.is-active { opacity: 1; }

.phases__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
}

.phases__tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(242, 237, 226, 0.18);
  border-bottom: 1px solid rgba(242, 237, 226, 0.18);
}
.phases__tab {
  padding: 1rem 0.4rem;
  text-align: left;
  color: rgba(242, 237, 226, 0.5);
  border-right: 1px solid rgba(242, 237, 226, 0.18);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: color 0.25s, background 0.25s;
  position: relative;
}
.phases__tab:last-child { border-right: none; }
.phases__tab::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
}
.phases__tab:hover { color: var(--warm); }
.phases__tab.is-active { color: var(--warm); }
.phases__tab.is-active::after { width: 100%; }
.phases__tab-num {
  font-family: var(--display);
  font-size: 1.6rem;
  line-height: 1;
  color: var(--gold);
}
.phases__tab-name {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.phases__bodies { position: relative; min-height: 180px; }
.phases__body {
  display: none;
  animation: phasesIn 0.45s var(--ease-out);
}
.phases__body.is-active { display: block; }
@keyframes phasesIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.phases__dur {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.phases__body h3 {
  font-family: var(--display);
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 0.96;
  padding-bottom: 0.08em;
  margin-bottom: 0.8rem;
}
.phases__body p {
  font-size: var(--step-2);
  line-height: 1.55;
  color: rgba(242, 237, 226, 0.85);
  max-width: 38ch;
}

@media (max-width: 880px) {
  .phases__panel { grid-template-columns: 1fr; gap: 1.25rem; }
  .phases__photos { aspect-ratio: 5 / 4; }
  .phases__body p { max-width: none; }
}

.choreo__photos {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.choreo__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0;
  transition: opacity 0.9s var(--ease-out), transform 1.4s var(--ease-out);
  transform: scale(1.05);
  filter: contrast(1.05) saturate(0.85) brightness(0.85);
}
.choreo__photo.is-active {
  opacity: 1;
  transform: scale(1);
}

.choreo__wash {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background:
    linear-gradient(to right, rgba(10, 9, 8, 0.85) 0%, rgba(10, 9, 8, 0.35) 35%, rgba(10, 9, 8, 0.55) 70%, rgba(10, 9, 8, 0.92) 100%),
    linear-gradient(to bottom, rgba(10, 9, 8, 0.55) 0%, transparent 25%, transparent 70%, rgba(10, 9, 8, 0.7) 100%);
}

.choreo__numeral {
  position: absolute;
  bottom: clamp(2rem, 6vw, 5rem);
  left: clamp(1.5rem, 4vw, 3.5rem);
  z-index: 3;
  font-family: var(--display);
  font-size: clamp(8rem, 22vw, 22rem);
  line-height: 0.78;
  color: var(--warm);
  opacity: 0.92;
  letter-spacing: -0.03em;
  pointer-events: none;
  display: block;
  mix-blend-mode: normal;
}
.choreo__numeral-current::before {
  content: "0";
  color: rgba(242, 237, 226, 0.25);
}
@media (max-width: 880px) {
  .choreo__numeral { bottom: auto; top: 18%; left: 1rem; font-size: 10rem; opacity: 0.85; }
}

.choreo__top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2.5rem) var(--gutter);
}
.choreo__hint {
  font-family: var(--mono);
  font-size: var(--step-1);
  letter-spacing: 0.08em;
  text-transform: lowercase;
  color: rgba(242, 237, 226, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.choreo__hint-num {
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--accent);
  letter-spacing: 0;
  line-height: 1;
}
.choreo__brand {
  font-family: var(--mono);
  font-size: var(--step-1);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242, 237, 226, 0.55);
}

.choreo__stages {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.choreo__stage {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  max-width: min(32ch, 42vw);
  padding: 0 clamp(2rem, 5vw, 4rem);
  text-align: right;
  opacity: 0;
  transition: opacity 0.6s var(--ease-out);
}
.choreo__stage[data-active], .choreo__stage.is-active { opacity: 1; }
@media (max-width: 880px) {
  .choreo__stage {
    top: auto;
    bottom: 5rem;
    transform: none;
    max-width: calc(100% - 2rem);
    padding: 0 1rem;
    text-align: left;
  }
}

.choreo__step {
  font-family: var(--mono);
  font-size: var(--step-1);
  letter-spacing: 0.08em;
  color: var(--accent);
  text-transform: lowercase;
  margin-bottom: 1rem;
}
.choreo__stage h2 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.4vw, 4rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.01em;
  margin-bottom: 1.1rem;
  padding-bottom: 0.08em;
}
.choreo__text {
  font-size: var(--step-2);
  line-height: 1.45;
  color: rgba(242, 237, 226, 0.85);
  margin-bottom: 1.2rem;
}
.choreo__dur {
  font-family: var(--mono);
  font-size: var(--step-1);
  letter-spacing: 0.06em;
  color: rgba(242, 237, 226, 0.6);
}

.choreo__bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: clamp(1.5rem, 3vw, 2.5rem) var(--gutter);
}
.choreo__progress {
  height: 2px;
  background: rgba(242, 237, 226, 0.18);
  position: relative;
}
.choreo__progress-bar {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: var(--accent);
}

@media (max-width: 880px) {
  .choreo__stage {
    max-width: calc(100% - 2 * var(--gutter));
    top: auto;
    transform: none;
    bottom: clamp(4.5rem, 14vw, 6.5rem);
    text-align: left;
    left: 0;
    right: auto;
  }
  .choreo__stage--right { text-align: left; }
  .choreo__stage h2 { font-size: clamp(1.9rem, 7vw, 2.6rem); }
  .choreo__text { font-size: var(--step-0); margin-bottom: 0.6rem; }
  .choreo__top { padding-top: 4.5rem; }
}

/* ----------------- SHOP (katalog e-commerce) ----------------- */
.shop {
  padding: var(--section-y) var(--gutter);
  background: var(--warm);
  color: var(--ink);
}

.shop__head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--gutter);
  align-items: end;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.shop__shipping {
  font-family: var(--mono);
  font-size: var(--step-1);
  letter-spacing: 0.02em;
  color: var(--mute);
  line-height: 1.6;
  max-width: 36ch;
  justify-self: end;
}
@media (max-width: 880px) {
  .shop__head { grid-template-columns: 1fr; }
  .shop__shipping { justify-self: start; }
}

.shop__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.shop__filters { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.chip {
  font-family: var(--mono);
  font-size: var(--step-1);
  letter-spacing: 0.04em;
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  border-radius: 999px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
}
.chip span { color: var(--mute); font-size: 0.72rem; }
.chip:hover { border-color: var(--ink); }
.chip.is-active { background: var(--ink); color: var(--warm); border-color: var(--ink); }
.chip.is-active span { color: rgba(242, 237, 226, 0.6); }

.select {
  font-family: var(--mono);
  font-size: var(--step-1);
  letter-spacing: 0.02em;
  padding: 0.5rem 2rem 0.5rem 0.8rem;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M2 4l4 4 4-4' stroke='%230A0908' stroke-width='1.4' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.7rem center;
  cursor: pointer;
}

.shop__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.8rem, 1.6vw, 1.6rem) clamp(0.6rem, 1.2vw, 1.2rem);
}
@media (max-width: 1100px) { .shop__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 780px)  { .shop__grid { grid-template-columns: repeat(2, 1fr); } }

.product {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--warm);
  border: 1px solid transparent;
  transition: border-color 0.25s, transform 0.25s var(--ease-out);
}
.product:hover { border-color: var(--ink); }
.product.is-hidden { display: none; }

.product__img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--warm-2);
}
.product__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease-out), filter 0.4s ease;
  filter: contrast(1.04) saturate(0.92);
}
.product:hover .product__img img { transform: scale(1.04); filter: contrast(1.08) saturate(1); }

.product__badge {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  background: var(--ink);
  color: var(--warm);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
}
.product__badge--new  { background: var(--accent); }
.product__badge--out  { background: rgba(10, 9, 8, 0.45); }

.product__body {
  padding: 0.85rem 0.9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}
.product__type {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
}
.product__name {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.15rem, 1.4vw, 1.45rem);
  letter-spacing: -0.005em;
  line-height: 1.05;
  padding-bottom: 0.06em;
}
.product__notes {
  font-family: var(--body);
  font-size: 0.85rem;
  color: var(--mute);
  line-height: 1.4;
}
.product__row {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 0.6rem;
}
.product__price {
  font-family: var(--mono);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.product__price small {
  font-weight: 400;
  color: var(--mute);
  font-size: 0.72rem;
  margin-left: 0.25rem;
}

.product__add {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 0.75rem;
  background: var(--ink);
  color: var(--warm);
  border: 1px solid var(--ink);
  transition: background 0.2s, color 0.2s;
  min-height: 36px;
  white-space: nowrap;
}
.product__add:hover { background: var(--accent); border-color: var(--accent); }
.product__add:disabled { background: transparent; color: var(--mute); border-color: var(--line); cursor: not-allowed; }
.product__add.is-added { background: var(--accent); border-color: var(--accent); }

.shop__foot {
  margin-top: 2rem;
  font-family: var(--mono);
  font-size: var(--step-1);
  color: var(--mute);
  text-align: center;
  letter-spacing: 0.02em;
}

/* ----------------- NAV CART BUTTON ----------------- */
.nav__cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.7rem;
  border: 1px solid currentColor;
  color: var(--warm);
  font-family: var(--mono);
  font-size: var(--step-1);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.nav__cart:hover { background: var(--warm); color: var(--ink); }
.nav__cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 18px; height: 18px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--warm);
  font-size: 0.62rem;
  font-weight: 500;
  padding: 0 5px;
  line-height: 1;
}
.nav__cart-count.is-zero { opacity: 0.3; }


/* =========================================================
   CART (e re — slide-based, clean e-commerce drawer)
   ========================================================= */

.cart {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
  pointer-events: none;
}
.cart.is-open { visibility: visible; pointer-events: auto; }

.cart__scrim {
  position: absolute;
  inset: 0;
  background: rgba(10, 9, 8, 0.55);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}
.cart.is-open .cart__scrim { opacity: 1; }

.cart__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(460px, 100vw);
  background: var(--warm);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease-quint);
  box-shadow: -20px 0 70px rgba(10, 9, 8, 0.2);
}
.cart.is-open .cart__panel { transform: translateX(0); }

.cart__top {
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--line);
  background: var(--warm);
  flex-shrink: 0;
}
.cart__title {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
  line-height: 1;
  padding-bottom: 0.06em;
}
.cart__close,
.cart__back {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--ink);
  transition: background 0.2s;
}
.cart__close:hover, .cart__back:hover { background: var(--warm-2); }
.cart__back[hidden] { visibility: hidden; display: grid; }

.cart__viewport {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.cart__slides {
  display: flex;
  width: 300%;
  height: 100%;
  transform: translateX(0);
  transition: transform 0.45s var(--ease-quint);
}
.cart__slides[data-slide="cart"]     { transform: translateX(0); }
.cart__slides[data-slide="checkout"] { transform: translateX(-33.3333%); }
.cart__slides[data-slide="done"]     { transform: translateX(-66.6666%); }

.cart__slide {
  width: 33.3333%;
  flex-shrink: 0;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.cart__empty {
  padding: 3.5rem 1.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  min-height: 100%;
  justify-content: center;
}
.cart__empty-icon { color: var(--mute); opacity: 0.6; margin-bottom: 0.5rem; }
.cart__empty-h {
  font-family: var(--display);
  font-size: 1.5rem;
  padding-bottom: 0.06em;
}
.cart__empty-sub { color: var(--mute); max-width: 28ch; }
.cart__empty .btn { margin-top: 1rem; }

.cart__list {
  list-style: none;
  margin: 0;
  padding: 0.25rem 1.25rem 1.5rem;
}
.cart__item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0.9rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.cart__item:last-child { border-bottom: none; }
.cart__item-img {
  width: 72px; height: 90px;
  object-fit: cover;
  background: var(--warm-2);
}
.cart__item-body { min-width: 0; display: flex; flex-direction: column; gap: 0.3rem; }
.cart__item-row {
  display: flex; justify-content: space-between; align-items: start; gap: 0.5rem;
}
.cart__item-name {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.15;
  padding-bottom: 0.04em;
  margin: 0;
}
.cart__item-meta {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--mute);
  letter-spacing: 0.04em;
}
.cart__item-price {
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
}
.cart__item-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.4rem;
}
.cart__qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  background: var(--warm);
}
.cart__qty button {
  width: 34px; height: 34px;
  font-family: var(--mono);
  font-size: 1rem;
  color: var(--ink);
  transition: background 0.15s, color 0.15s;
}
.cart__qty button:hover { background: var(--ink); color: var(--warm); }
.cart__qty button:disabled { opacity: 0.3; cursor: not-allowed; }
.cart__qty span {
  display: inline-grid;
  place-items: center;
  min-width: 36px;
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 500;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  align-self: stretch;
}
.cart__item-remove {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--mute);
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0.3rem 0;
}
.cart__item-remove:hover { color: var(--ink); }

#checkout-form {
  padding: 1.25rem 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.cart__hint {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--mute);
  letter-spacing: 0.02em;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  padding: 0.7rem 0.9rem;
  background: var(--warm-2);
  border-left: 2px solid var(--gold);
}

.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field label {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  font-weight: 500;
}
.field label span { font-weight: 400; color: var(--mute); letter-spacing: 0; }
.field input,
.field select,
.field textarea {
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink);
  padding: 0.85rem 0.9rem;
  border: 1px solid var(--line);
  background: var(--warm);
  border-radius: 0;
  min-height: 48px;
  width: 100%;
  resize: vertical;
  -webkit-appearance: none;
  appearance: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ink);
  background: #fff;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(10, 9, 8, 0.35); }
.field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'><path d='M3 5l4 4 4-4' stroke='%230A0908' stroke-width='1.5' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.2rem;
}

.cart__done {
  padding: 3.5rem 1.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-height: 100%;
  justify-content: center;
}
.cart__done-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  margin-bottom: 0.8rem;
}
.cart__done-h {
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 400;
  padding-bottom: 0.06em;
}
.cart__done-sub { color: var(--ink); max-width: 30ch; }
.cart__done-meta { color: var(--mute); font-size: 0.9rem; max-width: 28ch; }
.cart__done-ref {
  margin-top: 0.4rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--mute);
}
.cart__done-ref code {
  background: var(--warm-2);
  padding: 0.15rem 0.4rem;
  letter-spacing: 0.08em;
}
.cart__done .btn { margin-top: 1rem; width: 100%; max-width: 22rem; }

.cart__foot {
  border-top: 1px solid var(--line);
  background: var(--warm);
  flex-shrink: 0;
  padding: 1rem 1.25rem 1.25rem;
}
.cart__foot[hidden] { display: none; }
.cart__foot-block[hidden] { display: none; }

.cart__totals {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-bottom: 0.85rem;
}
.cart__total-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--mute);
}
.cart__total-row--grand {
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--ink);
  border-top: 1px solid var(--ink);
  margin-top: 0.4rem;
  padding-top: 0.6rem;
  align-items: baseline;
}

.cart__fine {
  margin-top: 0.7rem;
  text-align: center;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.02em;
  color: var(--mute);
}

.btn--full { width: 100%; justify-content: center; min-height: 50px; padding: 0.95rem 1.2rem; }
.btn--dark { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn--dark:hover { background: var(--ink); color: var(--warm); }
.btn--wa-green {
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.btn--wa-green:hover { background: #1FB659; }

@media (max-width: 520px) {
  .cart__panel { width: 100vw; box-shadow: none; }
  .cart__top { padding: 0.85rem 1rem; }
  .cart__title { font-size: 1.1rem; }
  .cart__list { padding: 0.25rem 1rem 1.5rem; }
  #checkout-form { padding: 1rem 1rem 1.5rem; }
  .cart__foot { padding: 0.9rem 1rem 1.1rem; }
}


/* ----------------- TOAST ----------------- */
.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translate(-50%, 200%);
  z-index: 150;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--ink);
  color: var(--warm);
  padding: 0.7rem 1rem 0.7rem 0.85rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 40px rgba(10, 9, 8, 0.25);
  transition: transform 0.45s var(--ease-quint), opacity 0.3s;
  opacity: 0;
  max-width: calc(100vw - 2rem);
}
.toast.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}
.toast__check {
  display: inline-grid;
  place-items: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  flex-shrink: 0;
}
.toast__text { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 50vw; }
.toast__view {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  padding-left: 0.6rem;
  margin-left: 0.4rem;
  border-left: 1px solid rgba(242, 237, 226, 0.25);
  cursor: pointer;
  white-space: nowrap;
}
.toast__view:hover { color: var(--warm); }

/* Cart icon pulse kur shtohet artikull */
.nav__cart.is-pulse .nav__cart-count {
  animation: cartPulse 0.6s var(--ease-out);
}
@keyframes cartPulse {
  0%   { transform: scale(1); }
  35%  { transform: scale(1.4); }
  60%  { transform: scale(0.95); }
  100% { transform: scale(1); }
}

/* ----------------- STORY ----------------- */
.story {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  background: var(--warm);
  color: var(--ink);
  position: relative;
}
.story__visual {
  position: relative;
  height: clamp(60vh, 80vh, 100vh);
  overflow: hidden;
}
.story__visual img {
  width: 100%; height: 110%; object-fit: cover;
  filter: contrast(1.05) saturate(0.9) brightness(0.96);
  will-change: transform;
}
.story__visual figcaption {
  position: absolute;
  bottom: 1rem; left: 1rem;
  font-family: var(--mono);
  font-size: var(--step-1);
  letter-spacing: 0.04em;
  color: var(--warm);
  mix-blend-mode: difference;
}

.story__copy {
  padding: var(--section-y) var(--gutter);
  max-width: 56ch;
  align-self: center;
}
.story__body {
  margin-top: 2rem;
  display: grid;
  gap: 1.25rem;
  font-size: var(--step-2);
  line-height: 1.55;
  color: rgba(10, 9, 8, 0.82);
}
.story__signature {
  margin-top: 0.5rem;
  font-family: var(--mono);
  font-size: var(--step-1);
  color: var(--mute);
}
.story__signature span { color: var(--ink); }

@media (max-width: 880px) {
  .story { grid-template-columns: 1fr; }
  .story__visual { height: 55dvh; }
  .story__copy { padding: clamp(3rem, 6vw, 4rem) var(--gutter); }
}

/* ----------------- NOTES PYRAMID ----------------- */
.notes {
  padding: var(--section-y) var(--gutter);
  background: var(--ink);
  color: var(--warm);
}
.notes__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gutter);
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.notes__head .eyebrow { color: var(--warm); }
.notes__head .section__title { color: var(--warm); }
.notes__lead {
  font-size: var(--step-2);
  line-height: 1.5;
  color: rgba(242, 237, 226, 0.78);
  max-width: 40ch;
  justify-self: end;
}
@media (max-width: 780px) {
  .notes__head { grid-template-columns: 1fr; }
  .notes__lead { justify-self: start; }
}

.notes__grid {
  display: grid;
  gap: 1px;
  background: rgba(242, 237, 226, 0.15);
  border-top: 1px solid rgba(242, 237, 226, 0.15);
  border-bottom: 1px solid rgba(242, 237, 226, 0.15);
}

.note {
  width: 100%;
  background: var(--ink);
  display: grid;
  grid-template-columns: minmax(80px, 110px) minmax(220px, 1.2fr) 2fr;
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: start;
  padding: clamp(1.6rem, 3vw, 2.4rem) clamp(0.5rem, 1vw, 1rem);
  text-align: left;
  transition: background 0.4s var(--ease-out);
  position: relative;
}
.note:hover, .note:focus-visible, .note[aria-expanded="true"] { background: var(--ink-2); }
.note:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }

.note__num {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.01em;
  color: var(--accent);
}
.note__head {
  display: grid;
  gap: 0.3rem;
}
.note__name {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1;
}
.note__time {
  font-family: var(--mono);
  font-size: var(--step-1);
  color: rgba(242, 237, 226, 0.55);
  letter-spacing: 0.04em;
}

.note__tags {
  font-family: var(--mono);
  font-size: var(--step-1);
  letter-spacing: 0.04em;
  color: rgba(242, 237, 226, 0.75);
  align-self: center;
  line-height: 1.6;
}

.note__body {
  display: none;
  grid-column: 2 / -1;
  font-size: var(--step-0);
  line-height: 1.55;
  color: rgba(242, 237, 226, 0.85);
  margin-top: 0.8rem;
  max-width: 60ch;
}
.note[aria-expanded="true"] .note__body { display: block; }

@media (max-width: 780px) {
  .note {
    grid-template-columns: 70px 1fr;
    gap: 1rem;
  }
  .note__tags {
    grid-column: 1 / -1;
    margin-top: 0.6rem;
    padding-left: calc(70px + 1rem);
  }
  .note__body { grid-column: 1 / -1; padding-left: calc(70px + 1rem); }
}

/* ----------------- CTA + FOOTER ----------------- */
.cta {
  padding: var(--section-y) var(--gutter);
  background: var(--accent);
  color: var(--warm);
  position: relative;
}
.cta__inner {
  max-width: 60ch;
}
.cta__title {
  font-family: var(--display);
  font-size: clamp(2.4rem, 6vw, 5.4rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.01em;
  padding-bottom: 0.05em;
  margin-bottom: 1.2rem;
}
.cta__sub {
  font-size: var(--step-2);
  line-height: 1.4;
  margin-bottom: 2rem;
  max-width: 36ch;
}

.cta__form {
  display: flex;
  gap: 0.6rem;
  max-width: 28rem;
  flex-wrap: wrap;
}
.cta__form input {
  flex: 1 1 16rem;
  min-height: 48px;
  padding: 0 1rem;
  background: transparent;
  border: 1px solid var(--warm);
  color: var(--warm);
  font-family: var(--mono);
  font-size: var(--step-1);
  letter-spacing: 0.04em;
}
.cta__form input::placeholder { color: rgba(242, 237, 226, 0.55); }
.cta__form input:focus { outline: 2px solid var(--warm); outline-offset: 2px; }
.cta__form button {
  min-height: 48px;
  padding: 0 1.4rem;
  background: var(--ink);
  color: var(--warm);
  font-family: var(--mono);
  font-size: var(--step-1);
  letter-spacing: 0.04em;
  transition: background 0.3s;
}
.cta__form button:hover { background: var(--warm); color: var(--ink); }

.cta__fine {
  margin-top: 2rem;
  font-family: var(--mono);
  font-size: var(--step-1);
  letter-spacing: 0.02em;
  color: rgba(242, 237, 226, 0.85);
  max-width: 48ch;
  line-height: 1.6;
}

.foot {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 2rem;
  padding: clamp(2.5rem, 5vw, 4rem) var(--gutter);
  background: var(--ink);
  color: var(--warm);
  font-family: var(--mono);
  font-size: var(--step-1);
  letter-spacing: 0.02em;
}
.foot__h {
  font-family: var(--mono);
  font-size: var(--step-1);
  letter-spacing: 0.1em;
  text-transform: lowercase;
  color: rgba(242, 237, 226, 0.55);
  margin-bottom: 0.8rem;
}
.foot__mark {
  font-family: var(--display);
  font-size: 2rem;
  width: 44px; height: 44px;
  border: 1px solid var(--warm);
  display: inline-grid; place-items: center;
  margin-bottom: 0.8rem;
  padding-bottom: 4px;
  line-height: 1;
}
.foot__name {
  font-family: var(--display);
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
  letter-spacing: 0;
}
.foot__line { line-height: 1.6; }
.foot__line--dim { color: rgba(242, 237, 226, 0.45); }
.foot__link { display: block; line-height: 1.8; opacity: 0.85; transition: opacity 0.2s; }
.foot__link:hover { opacity: 1; color: var(--accent); }

@media (max-width: 780px) {
  .foot { grid-template-columns: 1fr 1fr; }
}

/* ----------------- REVEALS (opacity-only sipas memory) ----------------- */
[data-reveal] { opacity: 0; transition: opacity 0.9s var(--ease-out); }
[data-reveal].is-in { opacity: 1; }
