/* ═══ Błysk Espresso Bar — design tokens ═══ */
:root {
  --blush: #EFC0AE;          /* pudrowy róż z logo */
  --blush-soft: #F7E4DA;
  --cream: #F8F2EA;
  --espresso: #241A14;       /* główny ciemny */
  --espresso-soft: #4A392E;
  --caramel: #A9714B;
  --white: #FFFDFB;
  --font-display: "Bodoni Moda", serif;
  --font-body: "Jost", sans-serif;
  --space-1: 8px; --space-2: 16px; --space-3: 24px;
  --space-4: 40px; --space-5: 64px; --space-6: 104px;
  --radius: 2px;
  --ease: cubic-bezier(.22, .8, .36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--espresso);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.12; }
h2 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); margin-bottom: var(--space-3); }
a { color: inherit; }
img { max-width: 100%; display: block; }
.ico { width: 26px; height: 26px; flex: 0 0 auto; }

.section { padding: var(--space-6) clamp(20px, 6vw, 96px); max-width: 1200px; margin: 0 auto; }
.eyebrow {
  font-size: .78rem; letter-spacing: .32em; text-transform: uppercase;
  font-weight: 500; color: var(--caramel); margin-bottom: var(--space-2);
}
.eyebrow--light { color: var(--blush); }

/* ═══ Sparkle / logo ═══ */
.sparkle { width: .34em; height: .34em; fill: currentColor; margin-left: .04em; transform: translateY(-.62em); }

/* ═══ NAV ═══ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px clamp(20px, 4vw, 48px);
  color: var(--white);
  transition: background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
}
.nav--solid { background: var(--cream); color: var(--espresso); box-shadow: 0 1px 0 rgba(36, 26, 20, .08); }
.nav__brand { display: flex; align-items: baseline; gap: 10px; text-decoration: none; }
.nav__mark { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; line-height: 1; }
.nav__name { font-size: 1.02rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 400; }
.nav__links { display: flex; align-items: center; gap: clamp(14px, 2.5vw, 30px); }
.nav__links a {
  text-decoration: none; font-size: .92rem; letter-spacing: .06em; font-weight: 400;
  opacity: .92; transition: opacity .2s;
}
.nav__links a:hover { opacity: 1; }
.nav__cta {
  border: 1px solid currentColor; border-radius: var(--radius);
  padding: 8px 18px;
}

/* ═══ HERO ═══ */
.hero { position: relative; height: 100dvh; min-height: 560px; overflow: hidden; }
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(36,26,20,.42) 0%, rgba(36,26,20,.18) 45%, rgba(36,26,20,.55) 100%);
}
.hero__content {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; color: var(--white); padding: 0 20px;
}
.hero__logo {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(3.4rem, 7vw, 5.2rem); line-height: 1;
  color: var(--blush);
  animation: fadeUp 1.1s var(--ease) both .25s;
}
.hero__title {
  font-size: clamp(2.5rem, 6.5vw, 4.6rem); font-weight: 500;
  margin-top: var(--space-2);
  animation: fadeUp 1.1s var(--ease) both .5s;
}
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.25rem); letter-spacing: .24em; text-transform: uppercase;
  font-weight: 300; margin-top: var(--space-2); color: var(--blush-soft);
  animation: fadeUp 1.1s var(--ease) both .75s;
}
.hero__actions { display: flex; gap: 14px; margin-top: var(--space-4); flex-wrap: wrap; justify-content: center; animation: fadeUp 1.1s var(--ease) both 1s; }
.hero__scroll {
  position: absolute; z-index: 2; left: 50%; bottom: 26px; transform: translateX(-50%);
  width: 44px; height: 44px; display: grid; place-items: center;
  color: var(--white); opacity: .85; animation: bob 2.4s ease-in-out infinite;
}
.hero__scroll svg { width: 22px; height: 22px; }

.btn {
  display: inline-block; padding: 13px 30px; min-height: 44px;
  font-family: var(--font-body); font-size: .95rem; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 500; text-decoration: none; border-radius: var(--radius);
  transition: transform .2s var(--ease), background .2s, color .2s;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn--light { background: var(--blush); color: var(--espresso); }
.btn--light:hover { background: var(--blush-soft); }
.btn--ghost { border: 1px solid rgba(255, 253, 251, .75); color: var(--white); }
.btn--ghost:hover { background: rgba(255, 253, 251, .12); }

/* ═══ AWARDS ═══ */
.awards { background: var(--espresso); color: var(--cream); padding: var(--space-4) clamp(20px, 5vw, 64px); }
.awards__track {
  list-style: none; max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: var(--space-3);
}
.awards__track li { display: flex; align-items: center; gap: 12px; font-size: .95rem; }
.awards__track .ico { color: var(--blush); }
.awards__track strong { font-weight: 500; display: block; }
.awards__track span { color: rgba(248, 242, 234, .65); font-size: .85rem; }

/* ═══ ABOUT ═══ */
.about { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(28px, 5vw, 72px); align-items: center; }
.about__media img { border-radius: var(--radius); box-shadow: 24px 24px 0 var(--blush); height: auto; }
.about__body p + p { margin-top: var(--space-2); }
.about__badge {
  margin-top: var(--space-4); display: flex; gap: 16px; align-items: center;
  background: var(--blush-soft); border-radius: var(--radius);
  padding: 18px 22px;
}
.about__badge .ico { width: 34px; height: 34px; color: var(--caramel); }
.about__badge strong { font-weight: 500; }
.about__badge span { font-size: .9rem; color: var(--espresso-soft); }

/* ═══ FAN CAROUSEL ═══ */
.fan { margin-bottom: var(--space-5); }
.fan__layout {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  height: clamp(300px, 52vh, 540px);
}
.fan-card {
  position: absolute;
  width: clamp(180px, 24vw, 300px);
  aspect-ratio: 3 / 4;
  border-radius: 10px;
  overflow: hidden;
  background: var(--blush-soft);
  box-shadow: 0 18px 44px rgba(36, 26, 20, .18);
  will-change: transform;
}
.fan-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  z-index: 1;
}
.fan-card__label {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1.1rem; color: var(--espresso);
  padding: 12px; text-align: center;
}

/* ═══ MENU ═══ */
.menu { text-align: center; }
.menu__note { color: var(--espresso-soft); margin-bottom: var(--space-5); }
.menu__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: var(--space-3); text-align: left; }
.card {
  background: var(--white); border: 1px solid rgba(36, 26, 20, .07); border-radius: var(--radius);
  padding: var(--space-4) var(--space-3);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(36, 26, 20, .09); }
.card h3 { font-size: 1.45rem; margin-bottom: 10px; }
.card p { font-size: .95rem; color: var(--espresso-soft); }

/* ═══ REVIEWS ═══ */
.reviews { text-align: center; }
.reviews h2 { display: flex; align-items: center; justify-content: center; gap: 18px; }
.reviews__stars { color: var(--caramel); font-size: .55em; letter-spacing: .12em; }
.reviews__meta { color: var(--espresso-soft); margin-bottom: var(--space-5); }
.reviews__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: var(--space-3); text-align: left; }
.quote {
  background: var(--blush-soft); border-radius: var(--radius);
  padding: var(--space-4);
  font-size: 1.05rem;
}
.quote footer { margin-top: var(--space-2); font-size: .88rem; color: var(--espresso-soft); }

/* ═══ VISIT ═══ */
.visit { max-width: none; background: var(--espresso); color: var(--cream); }
.visit__inner { max-width: 1200px; margin: 0 auto; }
.visit h2 { color: var(--white); }
.visit__list { list-style: none; margin: var(--space-4) 0; display: grid; gap: var(--space-3); max-width: 460px; }
.visit__list li { display: flex; gap: 16px; align-items: flex-start; }
.visit__list .ico { color: var(--blush); margin-top: 3px; }
.visit__list a { text-decoration: none; border-bottom: 1px solid rgba(239, 192, 174, .4); transition: border-color .2s; }
.visit__list a:hover { border-color: var(--blush); }

/* ═══ FOOTER ═══ */
.footer {
  background: var(--blush); color: var(--espresso);
  text-align: center; padding: var(--space-5) 20px;
}
.footer__mark { font-family: var(--font-display); font-weight: 600; font-size: 2.6rem; line-height: 1; margin-bottom: var(--space-2); }
.footer p { font-size: .95rem; }
.footer__ig {
  display: inline-flex; align-items: center; gap: 8px; margin-top: var(--space-2);
  font-size: .92rem; letter-spacing: .04em; text-decoration: none;
  border-bottom: 1px solid rgba(36, 26, 20, .35); padding-bottom: 2px;
  min-height: 44px;
}
.footer__ig svg { width: 20px; height: 20px; }
.footer__ig:hover { border-color: var(--espresso); }

/* ═══ Animacje ═══ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes bob { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* Ukrywanie do animacji tylko gdy JS działa (klasa .js na <html>) */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__logo, .hero__title, .hero__sub, .hero__actions { animation: none; }
  .hero__scroll { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ═══ Responsywność ═══ */
@media (max-width: 860px) {
  .about { grid-template-columns: 1fr; }
  .about__media { max-width: 420px; margin: 0 auto; }
  .nav__links a:not(.nav__cta) { display: none; }
}
